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

14 lines
364 B
Nginx Configuration File
Raw Normal View History

#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
2020-04-16 23:33:43 +02:00
2022-07-28 02:38:24 +02:00
# Path to source
alias __FINALPATH__/;
2014-11-15 17:24:32 +01:00
2022-07-28 02:38:24 +02:00
include uwsgi_params;
# Needed for long running operations in admin interface
uwsgi_read_timeout 3600;
__IS_SUBPATH__uwsgi_param SCRIPT_NAME __PATH__;
__IS_SUBPATH__uwsgi_modifier1 30;
uwsgi_pass unix:///run/__NAME__/app.socket;
2013-12-12 12:12:22 +01:00
}