Comparison with previous snippet
- --- Previous Snippet
-
- +++ Current Snippet
-
- @@ -4,3 +4,3 @@
-
- listen 443 ssl;
- - server_name matrix.frank-ruan.com;
- + server_name BACK_END_URL;
- server
- {
- listen 80;
- listen 443 ssl;
- server_name BACK_END_URL;
-
- #SSL-START SSL related configuration, do NOT delete or modify the next line of commented-out 404 rules
- #error_page 404/404.html;
- ssl_certificate /etc/nginx/cert/cert.crt;
- ssl_certificate_key /etc/nginx/cert/cert.key;
- ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3;
- ssl_ciphers EECDH+CHACHA20:EECDH+CHACHA20-draft:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5;
- ssl_prefer_server_ciphers on;
- ssl_session_cache shared:SSL:10m;
- ssl_session_timeout 10m;
- add_header Strict-Transport-Security "max-age=31536000";
- error_page 497 https://$host$request_uri;
-
- #SSL-END
-
- #ERROR-PAGE-START Error page configuration, allowed to be commented, deleted or modified
- #error_page 404 /404.html;
- #error_page 502 /502.html;
- #ERROR-PAGE-END
-
-
- # Forbidden files or directories
- location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md)
- {
- return 404;
- }
-
- location ~ ^(/_matrix|/_synapse/client) {
- # note: do not add a path (even a single /) after the port in `proxy_pass`,
- # otherwise nginx will canonicalise the URI and cause signature verification
- # errors.
- proxy_pass http://127.0.0.1:8001;
- proxy_set_header X-Forwarded-For $remote_addr;
- proxy_set_header X-Forwarded-Proto $scheme;
- proxy_set_header Host $host;
-
- # Nginx by default only allows file uploads up to 1M in size
- # Increase client_max_body_size to match max_upload_size defined in homeserver.yaml
- client_max_body_size 500M;
- }
- }