12345678910111213141516171819202122232425262728293031323334353637 |
- #
- # this is the nginx config for zammad
- # link this file in your /etc/nginx/sites-enabled via symlink
- # (ln -s /opt/zammad/contrib/nginx-zammad.conf /etc/nginx/sites-enabled/zammad.conf)
- #
- server {
- listen 80;
- server_name your.domain.org;
- 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;
-
- upstream zammad {
- server unix://opt/zammad/var/zammad.sock
- }
- location ~ ^/(assets/|robots.txt|humans.txt|favicon.ico) {
- expires max;
- }
- location /ws {
- proxy_http_version 1.1;
- proxy_set_header Upgrade $http_upgrade;
- proxy_set_header Connection "Upgrade";
- proxy_pass http://localhost:6042;
- }
- location / {
- proxy_set_header Host $host;
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
- proxy_pass http://zammad;
- }
- }
|