You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can access pastefy just fine by going to http://192.168.0.10:9999, but I'm unable to access pastefy with NGINX reverse proxy and, I'm getting file download instead of rendered page... I never had this issue with other 70 containers.
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name pastefy.XXXXXX.com;
include /config/nginx/ssl.conf;
client_max_body_size 0;
include /config/nginx/authelia-server.conf;
location / {
include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf;
include /config/nginx/resolver.conf;
set $upstream_app pastefy;
set $upstream_port 80;
set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
}
}
P.S. my nginx container can access any containers directly using the hostname without exposing external ports and the only thing being exposed to the internet is nginx's port 80 and 443.
The text was updated successfully, but these errors were encountered:
I can access pastefy just fine by going to http://192.168.0.10:9999, but I'm unable to access pastefy with NGINX reverse proxy and, I'm getting file download instead of rendered page... I never had this issue with other 70 containers.
Here's snippet of my docker compose
Snippet of my NGINX reverse proxy
P.S. my nginx container can access any containers directly using the hostname without exposing external ports and the only thing being exposed to the internet is nginx's port 80 and 443.
The text was updated successfully, but these errors were encountered: