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 2021-11-06 23:52:38 +01:00
parent 89b0788b7b
commit ff5ac5421c
No known key found for this signature in database
GPG key ID: 574F281483054D44

View file

@ -9,16 +9,10 @@ location __PATH__/ {
proxy_pass http://127.0.0.1:__PORT__/; proxy_pass http://127.0.0.1:__PORT__/;
proxy_set_header Host $host; proxy_set_header Host $host;
proxy_buffering off; proxy_buffering off;
proxy_set_header X-Real-IP $remote_addr; fastcgi_param REMOTE_USER $remote_user;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; client_max_body_size 200M;
proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-Proto $scheme;
#wrewrite ^__PATH__/gogs/(.*) /$1 break;
#rewrite ^__PATH__/gogs$ /$1 break;
#proxy_read_timeout 90;
client_max_body_size 200M;
# Include SSOWAT user panel. # Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc; include conf.d/yunohost_panel.conf.inc;
} }