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
{{ message }}
This repository was archived by the owner on May 6, 2025. It is now read-only.
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.