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

13 lines
251 B
Nginx Configuration File
Raw Permalink Normal View History

2022-09-12 20:00:09 +02:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
2023-02-23 16:56:28 +01:00
alias __INSTALL_DIR__/build/;
2022-09-12 20:00:09 +02:00
index index.html;
2023-07-06 09:04:42 +02:00
2023-07-25 22:25:35 +02:00
try_files $uri /index.html;
2023-07-06 09:04:42 +02:00
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
2022-09-12 20:00:09 +02:00
}