Created
November 19, 2023 21:31
-
-
Save gelinger777/0421cdddf5d8680f89fff0c22fecb8e8 to your computer and use it in GitHub Desktop.
Zammad Nginx Template for Laravel Forge
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# FORGE CONFIG (DO NOT REMOVE!) | |
include forge-conf/{{ SITE }}/before/*; | |
upstream zammad-railsserver { | |
server 127.0.0.1:3000; | |
} | |
upstream zammad-websocket { | |
server 127.0.0.1:6042; | |
} | |
server { | |
listen {{ PORT }}; | |
listen {{ PORT_V6 }}; | |
server_name {{ DOMAINS }}; | |
server_tokens off; | |
# FORGE SSL (DO NOT REMOVE!) | |
# ssl_certificate; | |
# ssl_certificate_key; | |
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; | |
ssl_prefer_server_ciphers off; | |
ssl_dhparam /etc/nginx/dhparams.pem; | |
add_header X-Frame-Options "SAMEORIGIN"; | |
add_header X-XSS-Protection "1; mode=block"; | |
add_header X-Content-Type-Options "nosniff"; | |
index index.html index.htm index.php; | |
charset utf-8; | |
# FORGE CONFIG (DO NOT REMOVE!) | |
include forge-conf/{{ SITE }}/server/*; | |
add_header Strict-Transport-Security "max-age=31536000" 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; | |
} | |
location ~ /\.(?!well-known).* { | |
deny all; | |
} | |
} | |
# FORGE CONFIG (DO NOT REMOVE!) | |
include forge-conf/{{ SITE }}/after/*; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment