server { server_name lubelogger.mydomain.com; listen 443 ssl; listen 8443 ssl; access_log /var/log/nginx/lubelogger.mydomain.com_access_log main; error_log /var/log/nginx/lubelogger.mydomain.com_error_log info; # The following line enables proxy auth with SSO, uncomment to use LubeLogger auth include "com.mydomain/authelia_location.conf"; location / { # The following two lines enables proxy auth with SSO, uncomment to use LubeLogger auth include "com.mydomain.com/authelia_proxy.conf"; include "com.mydomain.com/authelia_authrequest.conf"; proxy_pass http://127.0.0.1:8485; client_max_body_size 50000M; # The following lines are all commented to use NGINX SSO authentication and NOT LubeLogger # authentication. IF you want to use LubeLogger authentication, uncomment them. # proxy_set_header Host $http_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 Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; } }