From 6e574eee00e7a3a5c7b56c54991f0d1e22459a09 Mon Sep 17 00:00:00 2001 From: yaroslav Date: Sun, 12 Apr 2026 11:35:55 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B4=D0=B0=D1=82=D0=B8=20directus?= =?UTF-8?q?-ssl.conf?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- directus-ssl.conf | 52 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 directus-ssl.conf diff --git a/directus-ssl.conf b/directus-ssl.conf new file mode 100644 index 0000000..9fd2b7d --- /dev/null +++ b/directus-ssl.conf @@ -0,0 +1,52 @@ +server { + server_name gm.atmt.me; + listen 80; + return 301 https://gm.atmt.me$request_uri; +} + +server { + listen 443 ssl; + server_name gm.atmt.me; + + ssl_certificate /etc/letsencrypt/live/gm.atmt.me/fullchain.pem; + ssl_certificate_key /etc/letsencrypt/live/gm.atmt.me/privkey.pem; + + ssl_protocols TLSv1.2 TLSv1.3; + ssl_prefer_server_ciphers on; + ssl_session_timeout 1d; + ssl_session_cache shared:SSL:50m; + ssl_stapling on; + ssl_stapling_verify on; + add_header Strict-Transport-Security max-age=15768000; + + + location ~ /.well-known { + allow all; + root /var/www/html/; + } + + location / { + proxy_pass http://127.0.0.1:8055; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "upgrade"; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-NginX-Proxy true; + } + + # Redirect server error pages to the static page /50x.html + error_page 500 502 503 504 /50x.html; + location = /50x.html { + root /usr/share/nginx/html; + } + + #error_page 404 /404.html; + + # Exclude favicon from the logs to avoid bloating when it's not available + location /favicon.ico { + log_not_found on; + access_log off; + } +} \ No newline at end of file