2021-12-04 19:44:30 +00:00
|
|
|
server {
|
|
|
|
listen 443 ssl http2;
|
|
|
|
listen [::]:443 ssl http2;
|
|
|
|
server_name {{ tpl .Values.fqdn . }};
|
|
|
|
|
|
|
|
ssl_certificate /etc/letsencrypt/live/{{ tpl .Values.fqdn . }}/fullchain.pem;
|
|
|
|
ssl_certificate_key /etc/letsencrypt/live/{{ tpl .Values.fqdn . }}/privkey.pem;
|
|
|
|
|
|
|
|
client_max_body_size 1024m;
|
|
|
|
|
|
|
|
location / {
|
2021-12-04 20:15:42 +00:00
|
|
|
proxy_pass http://localhost:5000;
|
2021-12-04 19:44:30 +00:00
|
|
|
}
|
|
|
|
}
|