gitea_ynh/conf/nginx.conf

17 lines
489 B
Nginx Configuration File
Raw Permalink Normal View History

2018-02-25 21:45:24 +01:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
proxy_pass http://localhost:__PORT__/;
proxy_set_header Host $host;
proxy_buffering off;
fastcgi_param REMOTE_USER $remote_user;
client_max_body_size 50M;
# Force https
if ($scheme = http) {
2018-06-10 23:55:20 +02:00
# rewrite ^ https://$server_name$request_uri? permanent;
2018-02-25 21:45:24 +01:00
}
# Include SSOWAT user panel.
2018-06-10 23:55:20 +02:00
#include conf.d/yunohost_panel.conf.inc;
2018-02-25 21:45:24 +01:00
}