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

23 lines
622 B
Nginx Configuration File
Raw Normal View History

2022-12-24 20:48:34 +01:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
2022-08-06 19:00:44 +02:00
2022-08-07 03:29:06 +02:00
proxy_pass http://127.0.0.1:__PORT__;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Port $server_port;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $server_name;
2022-08-06 19:00:44 +02:00
2023-07-31 18:30:17 +02:00
# set max upload size
client_max_body_size 128M;
2022-08-06 23:23:06 +02:00
# Include SSOWAT user panel.
2022-08-29 03:03:23 +02:00
# include conf.d/yunohost_panel.conf.inc;
2022-08-06 23:23:06 +02:00
}
2022-08-06 19:00:44 +02:00
2022-08-10 02:32:18 +02:00
location /media/ {
2024-01-27 15:12:48 +01:00
alias __INSTALL_DIR__/mediafiles/;
2022-08-06 23:23:06 +02:00
}