mirror of
https://github.com/YunoHost-Apps/chatonsinfos_ynh.git
synced 2024-09-03 18:15:58 +02:00
12 lines
245 B
Nginx Configuration File
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;
|
|
}
|