Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi there @dethnass,
Your Nginx server blocks actually look correct.
Can you share some of the 404 errors that you get?
Also, have you tried visiting your applications on the specific ports just to test if they are running as expected: lite.domain.com:5300?
Regards, Bobby
Hi @bobbyyiliev
When i try to reach lite.domain.com or directly http://www.domain.com it gives me white of death (blank white) screen with that 404 console outputs:
Refused to apply style from 'http://lite.domain.com/css/bootstrap.min.css' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.
lite.domain.com/:1 Refused to apply style from 'http://lite.domain.com/public/css/index.css' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.
jquery.min.js:1 Failed to load resource: the server responded with a status of 404 (Not Found)
bootstrap.min.js:1 Failed to load resource: the server responded with a status of 404 (Not Found)
power.min.js:1 Failed to load resource: the server responded with a status of 404 (Not Found)
index.js:1 Failed to load resource: the server responded with a status of 404 (Not Found)
lite.domain.com/:1 Refused to apply style from 'http://lite.domain.com/css/bootstrap.min.css' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.
lite.domain.com/:1 Refused to apply style from 'http://lite.domain.com/public/css/index.css' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.
My dns records is like:
DNS records
Type Hostname Value TTL (seconds)
A lite.domain.com directs to 46.101.xxx.xx 3600
A www.domain.com directs to 46.101.xxx.xx 3600
By the way i have an also another droplet that carry just single app on with that configuration:
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/www/app;
server_name hellonode;
location ^~ /assets/ {
gzip_static on;
expires 12h;
add_header Cache-Control public;
}
location / {
proxy_http_version 1.1;
proxy_cache_bypass $http_upgrade;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
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;
proxy_pass http://localhost:5300;
}
}
That droplet works very well on http://ip/ with 0 error but i cant figure out my another droplet with two app.
An update on an older thread
The Nginx configuration for setting up a reverse proxy for two Node.js apps appears mostly correct, but the issues you’re experiencing (blank page and 404 errors) suggest there might be a problem with how the static assets are being served or a potential mismatch in the expected URLs between your Node.js app and the Nginx configuration. Here are a few steps to diagnose and potentially resolve the issue:
6300 and 5300). You can test this by directly accessing http://localhost:6300 and http://localhost:5300 on the server./styles/main.css, this file must be accessible at http://localhost:6300/styles/main.css (or 5300 for the second app).sudo tail -f /var/log/nginx/access.log
sudo tail -f /var/log/nginx/error.log
sudo nginx -t
sudo systemctl reload nginx
localhost in its listen function. It should be listen(port) or listen(port, '0.0.0.0').