This commit is contained in:
zino
2023-11-28 17:15:13 +01:00
parent 9bd0ed9981
commit bc089757f5

View File

@@ -3,7 +3,7 @@ server {
listen [::]:443 ssl;
server_name git.zinomedia.de;
access_log /var/log/nginx/host.access.log main;
access_log /var/log/nginx/host.access.log main;
error_log /var/log/nginx/error.log error;
ssl_certificate /etc/letsencrypt/live/git.zinomedia.de/fullchain.pem;
@@ -30,11 +30,11 @@ server {
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://$upstream;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $host;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
proxy_set_header Connection $http_connection;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $host;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
proxy_set_header Connection $http_connection;
}
}