scratch_ynh/conf/nginx.conf

11 lines
221 B
Nginx Configuration File
Raw Normal View History

2018-11-29 16:18:40 +01:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
2018-11-29 16:01:56 +01:00
location __PATH__/ {
2018-11-29 15:04:37 +01:00
2018-11-29 16:18:40 +01:00
# Path to source
2023-07-20 23:20:17 +02:00
alias __INSTALL_DIR__/ ;
2018-11-29 16:18:40 +01:00
2021-06-27 18:14:22 +02:00
index index.html;
2021-06-27 15:43:18 +02:00
2018-11-29 16:18:40 +01:00
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
2018-11-29 11:55:24 +01:00
}