1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/gitlab_ynh.git synced 2024-09-03 18:36:35 +02:00
gitlab_ynh/conf/nginx.conf

11 lines
272 B
Nginx Configuration File
Raw Normal View History

2017-06-10 10:10:31 +02:00
location YNH_WWW_PATH {
2017-06-28 16:54:03 +02:00
proxy_pass http://localhost:PORT;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Ssl on;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
2017-06-10 10:10:31 +02:00
2017-06-28 16:54:03 +02:00
include conf.d/yunohost_panel.conf.inc;
proxy_set_header Accept-Encoding "";
2017-06-10 10:10:31 +02:00
}