ungleich-k8s/apps/zammad/nginx/default.conf

67 lines
2.4 KiB
Text
Raw Normal View History

2021-10-09 10:53:13 +00:00
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name {{ tpl .Values.fqdn . }};
# Use Mozilla's guidelines for SSL/TLS settings
# https://mozilla.github.io/server-side-tls/ssl-config-generator/
ssl_certificate /etc/letsencrypt/live/{{ tpl .Values.fqdn . }}/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/{{ tpl .Values.fqdn . }}/privkey.pem;
# set max upload size
client_max_body_size 512M;
fastcgi_buffers 64 4K;
# Enable gzip but do not remove ETag headers
gzip on;
gzip_vary on;
gzip_comp_level 4;
gzip_min_length 256;
gzip_proxied expired no-cache no-store private no_last_modified no_etag auth;
gzip_types application/atom+xml application/javascript application/json application/ld+json application/manifest+json application/rss+xml application/vnd.geo+json application/vnd.ms-fontobject application/x-font-ttf application/x-web-app-manifest+json application/xhtml+xml application/xml font/opentype image/bmp image/svg+xml image/x-icon text/cache-manifest text/css text/plain text/vcard text/vnd.rim.location.xloc text/vtt text/x-component text/x-cross-domain-policy;
location = /robots.txt {
allow all;
log_not_found off;
access_log off;
}
2021-10-09 15:33:43 +00:00
error_log /dev/stdout info;
access_log /dev/stdout;
root /opt/zammad/public;
location ~ ^/(assets/|robots.txt|humans.txt|favicon.ico|apple-touch-icon.png) {
expires max;
}
2021-10-09 10:53:13 +00:00
2021-10-09 15:11:39 +00:00
location /ws {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header CLIENT_IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_read_timeout 86400;
proxy_pass http://localhost:6042;
}
2021-10-09 10:53:13 +00:00
2021-10-09 12:34:16 +00:00
location / {
2021-10-09 15:11:39 +00:00
proxy_set_header Host $http_host;
proxy_set_header CLIENT_IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
2021-10-09 10:53:13 +00:00
2021-10-09 15:11:39 +00:00
# Change this line in an SSO setup
proxy_set_header X-Forwarded-User "";
2021-10-09 10:53:13 +00:00
2021-10-09 15:11:39 +00:00
proxy_read_timeout 300;
proxy_pass http://localhost:3000;
2021-10-09 10:53:13 +00:00
2021-10-09 15:11:39 +00:00
gzip on;
gzip_types text/plain text/xml text/css image/svg+xml application/javascript application/x-javascript application/json application/xml;
gzip_proxied any;
2021-10-09 10:53:13 +00:00
}
}