How to use Nginx as reverse proxy for node js app?

Am trying to use nginx as reverse proxy for my simple node app , however am keeping getting 404 error on proxy side while locally on http://127.0.0.1:3000 everything is OK.

here is my basic node app

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>const express = require('express');
const path = require('path');
const app = express();
const port = 3000;
// Serve static files from the 'assets' directory
app.use('/assets', express.static(path.join(__dirname, 'assets')));
// Log all incoming requests
app.use((req, res, next) => {
console.log(`Request received: ${req.method} ${req.url}`);
next();
});
// Serve a simple HTML page that displays the image
app.get('/', (req, res) => {
res.send(`
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image Display Test</title>
</head>
<body>
<h1>Image Display Test</h1>
<img src="/assets/coffee.png" alt="Test Image">
</body>
</html>
`);
});
// Start the server
app.listen(port, () => {
console.log(`Server running at http://localhost:${port}`);
});
// log
app.use((req, res, next) => {
console.log('Request received:', req.method, req.url);
next();
});
app.use('/assets', (req, res, next) => {
console.log('Static asset requested:', req.url);
express.static(path.join(__dirname, 'assets'))(req, res, next);
});
</code>
<code>const express = require('express'); const path = require('path'); const app = express(); const port = 3000; // Serve static files from the 'assets' directory app.use('/assets', express.static(path.join(__dirname, 'assets'))); // Log all incoming requests app.use((req, res, next) => { console.log(`Request received: ${req.method} ${req.url}`); next(); }); // Serve a simple HTML page that displays the image app.get('/', (req, res) => { res.send(` <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Image Display Test</title> </head> <body> <h1>Image Display Test</h1> <img src="/assets/coffee.png" alt="Test Image"> </body> </html> `); }); // Start the server app.listen(port, () => { console.log(`Server running at http://localhost:${port}`); }); // log app.use((req, res, next) => { console.log('Request received:', req.method, req.url); next(); }); app.use('/assets', (req, res, next) => { console.log('Static asset requested:', req.url); express.static(path.join(__dirname, 'assets'))(req, res, next); }); </code>
const express = require('express');
const path = require('path');
const app = express();
const port = 3000;

// Serve static files from the 'assets' directory
app.use('/assets', express.static(path.join(__dirname, 'assets')));

// Log all incoming requests
app.use((req, res, next) => {
  console.log(`Request received: ${req.method} ${req.url}`);
  next();
});

// Serve a simple HTML page that displays the image
app.get('/', (req, res) => {
  res.send(`
    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8">
      <meta name="viewport" content="width=device-width, initial-scale=1.0">
      <title>Image Display Test</title>
    </head>
    <body>
      <h1>Image Display Test</h1>
      <img src="/assets/coffee.png" alt="Test Image">
    </body>
    </html>
  `);
});

// Start the server
app.listen(port, () => {
  console.log(`Server running at http://localhost:${port}`);
});

// log
app.use((req, res, next) => {
  console.log('Request received:', req.method, req.url);
  next();
});

app.use('/assets', (req, res, next) => {
  console.log('Static asset requested:', req.url);
  express.static(path.join(__dirname, 'assets'))(req, res, next);
});

and here is my nginx config

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>server {
listen %ip%:%proxy_port%;
server_name %domain_idn% %alias_idn%;
error_log /var/log/%web_system%/domains/%domain%.error.log error;
root /home/admin/web/test.example.com/public_html;
location /app_v567657/ {
proxy_pass http://127.0.0.1:3000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
```
my node js app.js file is `public_html/app_v567657/` so that no body can directly download app.js source code.
so whenever i visit my url from browser i get 404 for the app assets like `https://test.example.com/assets/coffee.png` which is displayed OK when i visit http://127.0.0.1:3000
so not sure what am doing wrong. any idea. thanks
</code>
<code>server { listen %ip%:%proxy_port%; server_name %domain_idn% %alias_idn%; error_log /var/log/%web_system%/domains/%domain%.error.log error; root /home/admin/web/test.example.com/public_html; location /app_v567657/ { proxy_pass http://127.0.0.1:3000; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection 'upgrade'; proxy_set_header Host $host; proxy_cache_bypass $http_upgrade; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; } } ``` my node js app.js file is `public_html/app_v567657/` so that no body can directly download app.js source code. so whenever i visit my url from browser i get 404 for the app assets like `https://test.example.com/assets/coffee.png` which is displayed OK when i visit http://127.0.0.1:3000 so not sure what am doing wrong. any idea. thanks </code>
server {
    listen %ip%:%proxy_port%;
    server_name %domain_idn% %alias_idn%;
    error_log /var/log/%web_system%/domains/%domain%.error.log error;

    root /home/admin/web/test.example.com/public_html;

    location /app_v567657/ {
        proxy_pass http://127.0.0.1:3000;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection 'upgrade';
        proxy_set_header Host $host;
        proxy_cache_bypass $http_upgrade;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
    }
}
    ```

my node js app.js file is `public_html/app_v567657/` so that no body can directly download app.js source code. 

so whenever i visit my url from browser i get 404 for the app assets like `https://test.example.com/assets/coffee.png` which is displayed OK when i visit http://127.0.0.1:3000

so not sure what am doing wrong. any idea.  thanks 

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật