1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/uptime-kuma_ynh.git synced 2024-10-01 13:34:58 +02:00
uptime-kuma_ynh/conf/nginx.conf

26 lines
693 B
Nginx Configuration File
Raw Normal View History

2021-11-01 18:18:52 +01:00
location __PATH__/ {
# Path to source
2021-11-01 21:19:10 +01:00
# alias __FINALPATH__/ ;
2021-11-01 18:18:52 +01:00
# Force usage of https
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
}
2021-11-01 23:47:00 +01:00
proxy_pass http://localhost:__PORT__;
# https://github.com/louislam/uptime-kuma/wiki/Reverse-Proxy#nginx
2021-11-01 20:43:27 +01:00
# proxy_set_header X-Real-IP $remote_addr;
# proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
# Common parameter to increase upload size limit
2021-11-01 18:18:52 +01:00
#client_max_body_size 50M;
# Include SSOWAT user panel.
2021-11-02 00:17:00 +01:00
include conf.d/yunohost_panel.conf.inc;
2021-11-01 18:18:52 +01:00
}