mirror of
https://github.com/YunoHost-Apps/weblate_ynh.git
synced 2024-10-01 13:35:04 +02:00
39 lines
907 B
Nginx Configuration File
39 lines
907 B
Nginx Configuration File
location __PATH__ {
|
|
#Source: https://docs.weblate.org/en/latest/admin/install.html#sample-configuration-for-nginx-and-uwsgi
|
|
# Path to source
|
|
alias __FINALPATH__/ ;
|
|
|
|
include uwsgi_params;
|
|
# Needed for long running operations in admin interface
|
|
uwsgi_read_timeout 3600;
|
|
# Adjust based to uwsgi configuration:
|
|
uwsgi_pass unix:///opt/__NAME__/uwsgi.sock;
|
|
# uwsgi_pass 127.0.0.1:8080;
|
|
|
|
# Include SSOWAT user panel.
|
|
include conf.d/yunohost_panel.conf.inc;
|
|
}
|
|
|
|
location __PATH__/favicon.ico {
|
|
# DATA_DIR/static/favicon.ico
|
|
alias __FINALPATH__/data/static/favicon.ico;
|
|
expires 30d;
|
|
}
|
|
|
|
location __PATH__/robots.txt {
|
|
# DATA_DIR/static/robots.txt
|
|
alias __FINALPATH__/data/static/robots.txt;
|
|
expires 30d;
|
|
}
|
|
|
|
location __PATH__/static {
|
|
# DATA_DIR/static/
|
|
alias __FINALPATH__/data/static/;
|
|
expires 30d;
|
|
}
|
|
|
|
location __PATH__/media {
|
|
# DATA_DIR/media/
|
|
alias __FINALPATH__/data/media/;
|
|
expires 30d;
|
|
}
|