Update plausible

adding more reverse proxy settings to nginx
                proxy_set_header X-Forwarded-Ssl on;
                proxy_set_header Host $host
This commit is contained in:
Sergey 2024-04-25 11:47:52 -04:00 committed by GitHub
parent cf97d39241
commit 2991255ca2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,6 +7,8 @@ server {
location / {
proxy_pass http://127.0.0.1:8000;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Ssl on;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;