fix vikunja
Some checks reported errors
continuous-integration/drone/push Build was killed

This commit is contained in:
2023-08-14 20:23:20 +02:00
parent a769494bc7
commit 8fb0ebb6fb
3 changed files with 14 additions and 10 deletions

View File

@ -65,16 +65,16 @@ http {
return 301 https://$host$request_uri;
}
{%- for server in webserver %}
{% for server in webserver %}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name {{ server.domain }};
ssl_certificate /etc/letsencrypt/live/{{ server.domain }}/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/{{ server.domain }}/privkey.pem;
{% if server.bigrequests -%}
{% if server.bigrequests %}
client_max_body_size 8G;
{% endif -%}
{% endif %}
location /{
{% if server.https %}
proxy_pass https://127.0.0.1:{{ server.port }};
@ -100,7 +100,7 @@ http {
proxy_pass http://127.0.0.1:{{ location.port }};
{% endif %}
}
{% endfor -%}
{% endfor %}
{% endif %}
}