Add SSL forwarding to nginx example

This commit is contained in:
Brendan Ward 2024-01-11 09:44:40 -08:00
parent f3d272e40f
commit 8403335a48
No known key found for this signature in database
GPG Key ID: BA077BE8F8B9CE08

View File

@ -230,6 +230,7 @@ server {
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Host $server_name;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Ssl on;
proxy_pass http://localhost:8000;
}
}