From fe1d86a3f248d219363bc7e8bb7888d9becfc863 Mon Sep 17 00:00:00 2001 From: Artur Date: Thu, 16 Jan 2025 15:41:43 +0100 Subject: [PATCH] bodypainter.artiks.tk --- .../https/https-bodypainter-artiks.tk.conf | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 nginx-config/https/https-bodypainter-artiks.tk.conf diff --git a/nginx-config/https/https-bodypainter-artiks.tk.conf b/nginx-config/https/https-bodypainter-artiks.tk.conf new file mode 100644 index 0000000..4cd2af8 --- /dev/null +++ b/nginx-config/https/https-bodypainter-artiks.tk.conf @@ -0,0 +1,30 @@ +server { + + listen 443 ssl; + server_name bodypainter.artiks.tk; + + server_tokens off; + + ssl_certificate /letsencrypt/live/artiks.tk/fullchain.pem; + ssl_certificate_key /letsencrypt/live/artiks.tk/privkey.pem; + + ssl_protocols TLSv1.2 TLSv1.3; + ssl_ciphers HIGH:!aNULL:!MD5; + + + location / { + + # Ograniczenie liczby żądań + limit_req zone=ip_limit burst=20 nodelay; + + proxy_pass http://zaklik_by_node_js:3000; + + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_set_header Host $host; + proxy_set_header X-Forwarded-Host $host; + proxy_set_header X-Forwarded-Port $server_port; + } + +} \ No newline at end of file