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

25 lines
560 B
Nginx Configuration File
Raw Normal View History

2022-08-10 01:43:01 +02:00
location / {
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
2022-08-06 23:23:06 +02:00
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}
2022-08-06 19:00:44 +02:00
2022-08-10 02:28:56 +02:00
location /static/ {
2022-08-23 09:42:25 +02:00
alias __FINALPATH__/staticfiles;
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/ {
2022-08-23 09:42:25 +02:00
alias __FINALPATH__/mediafiles;
2022-08-06 23:23:06 +02:00
}
2022-08-06 19:00:44 +02:00