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
2023-11-29 22:52:50 +01:00

12 lines
245 B
Nginx Configuration File

#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
default_type "text/plain";
charset utf-8;
# Path to source
alias __INSTALL_DIR__/public/;
index index.html;
try_files $uri $uri/ index.html;
gzip off;
}