Add weblate config to nginx.template
This commit is contained in:
parent
d8810d5c43
commit
dcb051b1cd
@ -35,6 +35,8 @@ server {
|
|||||||
proxy_set_header X-Forwarded-Proto https;
|
proxy_set_header X-Forwarded-Proto https;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
client_max_body_size 20M;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
server {
|
server {
|
||||||
@ -60,3 +62,67 @@ server {
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
listen [::]:443 ssl http2;
|
||||||
|
server_name energy.ojuso.org;
|
||||||
|
|
||||||
|
ssl_certificate /web/certs/energy.ojuso.org/fullchain.pem;
|
||||||
|
ssl_certificate_key /web/certs/energy.ojuso.org/privkey.pem;
|
||||||
|
ssl_dhparam /web/certs/dhparam.pem;
|
||||||
|
ssl_trusted_certificate /web/certs/energy.ojuso.org/chain.pem;
|
||||||
|
|
||||||
|
include directives/*;
|
||||||
|
|
||||||
|
http2_idle_timeout 5m;
|
||||||
|
|
||||||
|
root /web/weblate/data/static;
|
||||||
|
|
||||||
|
gzip on;
|
||||||
|
gzip_proxied any;
|
||||||
|
gzip_types text/plain
|
||||||
|
application/atom+xml
|
||||||
|
application/rss+xml
|
||||||
|
application/javascript
|
||||||
|
text/xml
|
||||||
|
text/css
|
||||||
|
application/xml
|
||||||
|
application/json
|
||||||
|
image/svg+xml
|
||||||
|
font/opentype
|
||||||
|
application/x-font-ttf
|
||||||
|
application/vnd.ms-fontobject;
|
||||||
|
|
||||||
|
location /favicon.ico {
|
||||||
|
alias /web/weblate/data/static/favicon.ico;
|
||||||
|
expires 30d;
|
||||||
|
add_header Cache-Control "public";
|
||||||
|
}
|
||||||
|
|
||||||
|
location /robots.txt {
|
||||||
|
alias /web/weblate/data/static/robots.txt;
|
||||||
|
expires 30d;
|
||||||
|
add_header Cache-Control "public";
|
||||||
|
}
|
||||||
|
|
||||||
|
location /static {
|
||||||
|
alias /web/weblate/data/static/;
|
||||||
|
expires 30d;
|
||||||
|
add_header Cache-Control "public";
|
||||||
|
}
|
||||||
|
|
||||||
|
location /media {
|
||||||
|
alias /web/weblate/data/media/;
|
||||||
|
expires 30d;
|
||||||
|
add_header Cache-Control "public";
|
||||||
|
}
|
||||||
|
|
||||||
|
location / {
|
||||||
|
proxy_pass http://weblate:8000;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Forwarded-For $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
add_header Cache-Control "no-cache";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user