server { server_name navidrome.mydomain.com; listen 443 ssl; listen 8443 ssl; http2 on; access_log /var/log/nginx/navidrome.mydomain.com_access_log main; error_log /var/log/nginx/navidrome.mydomain.com_error_log info; include "com.mydomain/authelia_location.conf"; location ^~ / { include "com.mydomain/authelia_proxy.conf"; include "com.mydomain/authelia_authrequest.conf"; proxy_pass http://127.0.0.1:4533; proxy_set_header X-Forwarded-Protocol $scheme; proxy_set_header Remote-User $remote_user; proxy_buffering off; } location /rest { proxy_pass http://127.0.0.1:4533/rest; 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_set_header X-Forwarded-Protocol $scheme; proxy_set_header X-Forwarded-Host $http_host; proxy_set_header Remote-User $remote_user; proxy_buffering off; } client_max_body_size 100M; }