new page PleciAnki.pl

This commit is contained in:
Artur Kuś 2025-09-11 20:43:08 +02:00
parent 053a31416e
commit 9ac92c39cb
1 changed files with 22 additions and 7 deletions

View File

@ -1,4 +1,5 @@
server {
listen 443 ssl;
server_name plecianki.pl;
@ -10,6 +11,20 @@ server {
ssl_protocols TLSv1.2 TLSv1.3;
ssl_ciphers HIGH:!aNULL:!MD5;
return 301 https://www.facebook.com/PleciAnkiAlpakarnia/;
location / {
# Ograniczenie liczby żądań
limit_req zone=ip_limit burst=20 nodelay;
proxy_pass http://arti24-container:3337;
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;
}
}