Nginx Server Authentication
Utilizing Nginx's server_auth
Configure the Nginx location block
Native Nginx Rewrite
location ~ /organizr-auth/(.*) {
internal;
rewrite ^/organizr-auth/(.*) /api/v2/auth/$1;
}Native Nginx Proxy Pass
location ~ /organizr-auth/(.*) {
internal;
proxy_pass https://127.0.0.1/api/v2/auth/$1;
proxy_set_header Content-Length "";
}Docker Container
SWAG/Letsencrypt Docker
Subdomains
Reverse Proxy (subdirectory)
Excluding a location from authentication
NPM


Location:
Forward Hostname / IP

Last updated
Was this helpful?