1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/gogs_ynh.git synced 2024-09-03 20:36:23 +02:00

Update nginx.conf

This commit is contained in:
ericgaspar 2020-12-29 23:42:57 +01:00
parent cc878ea07a
commit 4695d907ba
No known key found for this signature in database
GPG key ID: 574F281483054D44

View file

@ -6,17 +6,17 @@ location __PATH__/ {
rewrite ^ https://$server_name$request_uri? permanent;
}
proxy_pass http://127.0.0.1:__PORT__;
proxy_set_header Host $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_pass http://127.0.0.1:__PORT__/;
proxy_set_header Host $host;
proxy_buffering off;
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;
rewrite ^__PATH__/gogs/(.*) /$1 break;
rewrite ^__PATH__/gogs$ /$1 break;
proxy_read_timeout 90;
#rewrite ^__PATH__/gogs/(.*) /$1 break;
#rewrite ^__PATH__/gogs$ /$1 break;
#proxy_read_timeout 90;
client_max_body_size 200M;
# Include SSOWAT user panel.