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

cleaned spaces in nginx.conf and removed https redirection

This commit is contained in:
Jean-Baptiste Holcroft 2017-09-13 17:17:05 +02:00
parent 82cddfa8f3
commit 18cd39506f

View file

@ -1,46 +1,41 @@
location __PATH__ { location __PATH__ {
#Source: https://docs.weblate.org/en/latest/admin/install.html#sample-configuration-for-nginx-and-uwsgi #Source: https://docs.weblate.org/en/latest/admin/install.html#sample-configuration-for-nginx-and-uwsgi
#TODO:https://docs.weblate.org/en/latest/admin/install.html#id2 # Path to source
# Path to source alias __FINALPATH__/ ;
alias __FINALPATH__/ ;
if ($scheme = http) { location /favicon.ico {
rewrite ^ https://$server_name$request_uri? permanent; # DATA_DIR/static/favicon.ico
} alias __FINALPATH__/static/favicon.ico;
expires 30d;
}
location /favicon.ico { location /robots.txt {
# DATA_DIR/static/favicon.ico # DATA_DIR/static/robots.txt
alias __FINALPATH__/static/favicon.ico; alias __FINALPATH__/static/robots.txt;
expires 30d; expires 30d;
} }
location /robots.txt { location /static {
# DATA_DIR/static/robots.txt # DATA_DIR/static/
alias __FINALPATH__/static/robots.txt; alias __FINALPATH__/static/;
expires 30d; expires 30d;
} }
location /static { location /media {
# DATA_DIR/static/ # DATA_DIR/media/
alias __FINALPATH__/static/; alias __FINALPATH__/media/;
expires 30d; expires 30d;
} }
location /media { location / {
# DATA_DIR/media/ include uwsgi_params;
alias __FINALPATH__/media/; # Needed for long running operations in admin interface
expires 30d; uwsgi_read_timeout 3600;
} # Adjust based to uwsgi configuration:
uwsgi_pass unix:///run/uwsgi/app/weblate/socket;
# uwsgi_pass 127.0.0.1:8080;
}
location / { # Include SSOWAT user panel.
include uwsgi_params; include conf.d/yunohost_panel.conf.inc;
# Needed for long running operations in admin interface
uwsgi_read_timeout 3600;
# Adjust based to uwsgi configuration:
uwsgi_pass unix:///run/uwsgi/app/weblate/socket;
# uwsgi_pass 127.0.0.1:8080;
}
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
} }