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

17 lines
518 B
Nginx Configuration File
Raw Normal View History

2024-04-10 07:40:36 +02:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
2024-04-10 08:01:17 +02:00
# Set max upload size
client_max_body_size 20m;
2024-04-10 07:40:36 +02:00
2024-04-10 08:01:17 +02:00
proxy_pass http://127.0.0.1:__PORT__/;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
proxy_redirect default;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Host $server_name;
proxy_set_header X-Forwarded-Proto $scheme;
2024-04-10 07:40:36 +02:00
2024-04-10 08:01:17 +02:00
# Include SSOWAT user panel.
2024-04-10 07:40:36 +02:00
include conf.d/yunohost_panel.conf.inc;
2024-04-10 08:01:17 +02:00
}