This repository was archived by the owner on May 6, 2025. It is now read-only.
This repository was archived by the owner on May 6, 2025. It is now read-only.
How to setup nginx reverse proxy? #2
Open
Description
I have filebrowser running in a container just fine and I now want external/remote access to it.
I have nginx setup like this:
location /files { auth_basic "Restricted"; auth_basic_user_file /config/nginx/.htpasswd; include /config/nginx/proxy.conf; resolver 127.0.0.11 valid=30s; set $upstream_jackett jackett; proxy_pass http://docker.lan:9107/files; }
However, when I go to http://mydomainame.com/files I just get the 3 dots on screen and it doesn't go any further.