Nginx proxy -> implications?

I am trying to put the manifest backend (127.0.0.1:1111) on a nginx proxy so it is served on mydomain.tld/backend. It seems to route correctly, but there is only a white screen rendered. What am I missing here? For reference, when accessed directly via IP/port, it works perfectly
1 Reply
brunobuddy
brunobuddy5w ago
hello @crontent, can you show me your NGINX config to have a look ? Here is a default config for Manifest on NGINX. I guess the location "/" has to become "/backend" in your case:
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-NginX-Proxy true;
proxy_pass http://localhost:1111/;
proxy_ssl_session_reuse off;
proxy_set_header Host $http_host;
proxy_cache_bypass $http_upgrade;
proxy_redirect off;

proxy_connect_timeout 3600s;
proxy_send_timeout 3600s;
proxy_read_timeout 3600s;
}
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-NginX-Proxy true;
proxy_pass http://localhost:1111/;
proxy_ssl_session_reuse off;
proxy_set_header Host $http_host;
proxy_cache_bypass $http_upgrade;
proxy_redirect off;

proxy_connect_timeout 3600s;
proxy_send_timeout 3600s;
proxy_read_timeout 3600s;
}

Did you find this page helpful?