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

12 lines
223 B
Nginx Configuration File
Raw Normal View History

2020-06-14 06:25:54 +02:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
2015-06-18 23:40:52 +02:00
2020-06-14 06:25:54 +02:00
# Path to source
2024-07-12 12:53:33 +02:00
alias __INSTALL_DIR__/www/;
2020-06-14 06:25:54 +02:00
2024-07-12 12:53:33 +02:00
index index.html;
2015-06-18 23:40:52 +02:00
2020-06-14 06:25:54 +02:00
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
2015-06-18 23:40:52 +02:00
}