What do I need to change on my nginx/sites-available/default config so that it can find /api/auth? I am new to nginx. I believe the issue is in the nginx configuration for proxying requests to the api. here is my /nginx/sites-available/default config:
server {
listen 80 default_server;
server_name _;
# react app & front-end files
location / {
root /opt/devParty/client/build;
try_files $uri /index.html;
}
# node api reverse proxy
location /api {
root /opt/devParty/routes/api;
try_files $uri /api/auth.js =404;
add_header 'Access-ControlAllow-Origin' '*';
proxy_pass http://localhost:4000/;
}
}
Here is the file structure on EC2 ubuntu:
devParty/
├── client
│ ├── package-lock.json
│ ├── package.json
│ └── webpack.config.js
├── config
│ ├── db.js
│ └── default.json
├── middleware
│ └── auth.js
├── models
│ ├── Post.js
│ ├── Profile.js
│ └── User.js
├── package-lock.json
├── package.json
├── routes
│ └── api
└── server.js
And my server.js file:
const { application } = require('express')
const express = require('express')
const app = express()
const PORT = process.env.PORT || 4000
const connectDB = require('./config/db')
const path = require('path')
// Connect Database
connectDB()
// Init Midddleware
// Allows us to get data in req.body on users.js
app.use(express.json({ extended: false }))
// app.get('/', (req, res) => res.send('API Running'))
// Define Routes
app.use('/api/users', require('./routes/api/users'))
app.use('/api/auth', require('./routes/api/auth'))
app.use('/api/profile', require('./routes/api/profile'))
app.use('/api/posts', require('./routes/api/posts'))
// Server status assets in production
if(process.env.NODE_ENV === 'production') {
// Set static foler
app.use(express.static('client/build'))
app.get('*', (req, res) => {
res.sendFile(path.resolve(__dirname, 'client', 'build', 'index.html')) })
}
app.listen(PORT, () => console.log(`Server started on port ${PORT}`))
access.logfor/api/auth.