mirror of
https://github.com/YunoHost-Apps/pytition_ynh.git
synced 2024-09-03 20:16:08 +02:00
19 lines
417 B
Nginx Configuration File
19 lines
417 B
Nginx Configuration File
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
|
location __PATH__/static/ {
|
|
alias __INSTALL_DIR__/static/;
|
|
}
|
|
|
|
location __PATH__/mediaroot/ {
|
|
alias __INSTALL_DIR__/mediaroot/;
|
|
}
|
|
|
|
location __PATH__/ {
|
|
include uwsgi_params;
|
|
uwsgi_pass unix:///run/__APP__/app.socket;
|
|
|
|
uwsgi_read_timeout 180;
|
|
uwsgi_send_timeout 180;
|
|
|
|
# Include SSOWAT user panel.
|
|
include conf.d/yunohost_panel.conf.inc;
|
|
}
|