123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- #
- # this is an example nginx config for Zammad
- # Please visit https://docs.zammad.org for further input on how to configure
- # your nginx to work with Zammad
- #
- upstream zammad-railsserver {
- server 127.0.0.1:3000;
- }
- upstream zammad-websocket {
- server 127.0.0.1:6042;
- }
- server {
- listen 80;
- listen [::]:80;
- server_name example.com;
- # security - prevent information disclosure about server version
- server_tokens off;
- access_log /var/log/nginx/zammad.access.log;
- error_log /var/log/nginx/zammad.error.log;
- location /.well-known/ {
- root /var/www/html;
- }
- return 301 https://$server_name$request_uri;
- }
- server {
- listen 443 ssl http2;
- listen [::]:443 ssl http2;
- server_name example.com;
- # security - prevent information disclosure about server version
- server_tokens off;
- ssl_certificate /etc/ssl/certs/example.com.pem;
- ssl_certificate_key /etc/ssl/private/example.com.key;
- ssl_trusted_certificate /etc/ssl/certs/root-ca-plus-intermediates.pem;
- ssl_dhparam /etc/ssl/dhparam.pem;
- ssl_protocols TLSv1.2 TLSv1.3;
- ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:DHE-RSA-CHACHA20-POLY1305;
- ssl_prefer_server_ciphers off;
- ssl_session_cache shared:SSL:10m;
- ssl_session_timeout 180m;
- ssl_session_tickets off;
- ssl_stapling on;
- ssl_stapling_verify on;
- # Use your prefered resolver - also allows external like 1.1.1.1 and 8.8.8.8
- resolver 127.0.0.1;
- add_header Strict-Transport-Security "max-age=63072000" always;
- location = /robots.txt {
- access_log off; log_not_found off;
- }
- location = /favicon.ico {
- access_log off; log_not_found off;
- }
- root /opt/zammad/public;
- access_log /var/log/nginx/zammad.access.log;
- error_log /var/log/nginx/zammad.error.log;
- client_max_body_size 50M;
- location ~ ^/(assets/|robots.txt|humans.txt|favicon.ico|apple-touch-icon.png) {
- expires max;
- }
- # legacy web socket server
- 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://zammad-websocket;
- }
- # action cable
- location /cable {
- 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://zammad-railsserver;
- }
- location / {
- 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;
- # change this line in an SSO setup
- proxy_set_header X-Forwarded-User "";
- proxy_read_timeout 180;
- proxy_pass http://zammad-railsserver;
- 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;
- }
- }
|