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

13 lines
245 B
Nginx Configuration File
Raw Normal View History

2023-08-04 22:12:34 +02:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
2023-08-24 17:03:22 +02:00
default_type "text/plain";
2023-08-29 05:53:09 +02:00
charset utf-8;
2023-08-04 22:12:34 +02:00
2023-08-24 17:03:22 +02:00
# Path to source
alias __INSTALL_DIR__/public/;
2023-09-03 23:49:38 +02:00
index index.html;
try_files $uri $uri/ index.html;
2023-08-24 17:03:22 +02:00
gzip off;
2023-08-04 22:12:34 +02:00
}