1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/tracim_ynh.git synced 2024-10-01 13:34:52 +02:00
tracim_ynh/conf/nginx.conf
2022-04-08 03:47:14 +02:00

63 lines
1.3 KiB
Nginx Configuration File

#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/webdav {
# Path to source
alias __FINALPATH__/ ;
uwsgi_pass unix:///tmp/uwsgi-__APP__-webdav.socket;
include uwsgi_params;
uwsgi_param SCRIPT_NAME '';
}
location __PATH__/dav {
# Path to source
alias __FINALPATH__/ ;
uwsgi_pass unix:///tmp/uwsgi-__APP__-caldav.socket;
include uwsgi_params;
uwsgi_param SCRIPT_NAME '';
}
location __PATH__/assets {
# Path to source
alias __FINALPATH__/frontend/dist/assets ;
# Common parameter to increase upload size limit in conjunction with dedicated php-fpm file
#client_max_body_size 50M;
try_files $uri $uri/;
}
location __PATH__/app {
# Path to source
alias __FINALPATH__/frontend/dist/app ;
# Common parameter to increase upload size limit in conjunction with dedicated php-fpm file
#client_max_body_size 50M;
try_files $uri $uri/;
}
location __PATH__/favicon.ico {
# Path to source
alias __FINALPATH__/frontend/dist/assets/branding/images/favicon/favicon.ico ;
try_files $uri $uri/;
}
location __PATH__/ {
# Path to source
alias __FINALPATH__/ ;
uwsgi_pass unix:///tmp/uwsgi-__APP__-web.socket;
include uwsgi_params;
uwsgi_param SCRIPT_NAME '';
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}