1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/weblate_ynh.git synced 2024-10-01 13:35:04 +02:00
weblate_ynh/conf/nginx.conf
2024-01-18 13:12:54 +01:00

33 lines
789 B
Nginx Configuration File

#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
# https://github.com/WeblateOrg/weblate/blob/master/weblate/examples/weblate.nginx.conf
location = __PATH__/favicon.ico {
alias __INSTALL_DIR__/data/static/favicon.ico;
expires 30d;
}
location = __PATH__/robots.txt {
alias __INSTALL_DIR__/data/static/robots.txt;
expires 30d;
}
location __PATH__/static/ {
alias __INSTALL_DIR__/data/static/;
expires 30d;
}
location __PATH__/media/ {
alias __INSTALL_DIR__/data/media/;
expires 30d;
}
location __PATH__/ {
alias __INSTALL_DIR__/ ;
include uwsgi_params;
# Needed for long running operations in admin interface
uwsgi_read_timeout 3600;
uwsgi_pass unix:///var/run/__NAME__/socket;
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}