|
@@ -1,74 +1,78 @@
|
|
|
#
|
|
|
-# this is the nginx config for zammad
|
|
|
+# 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
|
|
|
+#
|
|
|
+# This is a NON SSL configuration, DO NOT use in production!
|
|
|
#
|
|
|
|
|
|
upstream zammad-railsserver {
|
|
|
- server 127.0.0.1:3000;
|
|
|
+ server 127.0.0.1:3000;
|
|
|
}
|
|
|
|
|
|
upstream zammad-websocket {
|
|
|
- server 127.0.0.1:6042;
|
|
|
+ server 127.0.0.1:6042;
|
|
|
}
|
|
|
|
|
|
server {
|
|
|
- listen 80;
|
|
|
- listen [::]:80;
|
|
|
+ listen 80;
|
|
|
+ listen [::]:80;
|
|
|
|
|
|
- # replace 'localhost' with your fqdn if you want to use zammad from remote
|
|
|
- server_name localhost;
|
|
|
+ # replace 'localhost' with your fqdn if you want to use zammad from remote
|
|
|
+ server_name localhost;
|
|
|
|
|
|
- # security - prevent information disclosure about server version
|
|
|
- server_tokens off;
|
|
|
+ # security - prevent information disclosure about server version
|
|
|
+ server_tokens off;
|
|
|
|
|
|
- root /opt/zammad/public;
|
|
|
+ root /opt/zammad/public;
|
|
|
|
|
|
- access_log /var/log/nginx/zammad.access.log;
|
|
|
- error_log /var/log/nginx/zammad.error.log;
|
|
|
+ access_log /var/log/nginx/zammad.access.log;
|
|
|
+ error_log /var/log/nginx/zammad.error.log;
|
|
|
|
|
|
- client_max_body_size 50M;
|
|
|
+ client_max_body_size 50M;
|
|
|
|
|
|
- location ~ ^/(assets/|robots.txt|humans.txt|favicon.ico|apple-touch-icon.png) {
|
|
|
- expires max;
|
|
|
- }
|
|
|
+ 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;
|
|
|
- }
|
|
|
+ # 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;
|
|
|
- }
|
|
|
+ # 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;
|
|
|
+ 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 "";
|
|
|
+ # Change this line in an SSO setup
|
|
|
+ proxy_set_header X-Forwarded-User "";
|
|
|
|
|
|
- proxy_read_timeout 300;
|
|
|
- proxy_pass http://zammad-railsserver;
|
|
|
+ proxy_read_timeout 300;
|
|
|
+ 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;
|
|
|
- }
|
|
|
+ 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;
|
|
|
+ }
|
|
|
}
|