PleciAnki.arti24.eu

This commit is contained in:
Artur Kuś 2025-10-06 20:55:32 +02:00
parent b5bed65b27
commit b143d6bff1
1 changed files with 5 additions and 5 deletions

View File

@ -11,13 +11,12 @@ server {
ssl_protocols TLSv1.2 TLSv1.3;
ssl_ciphers HIGH:!aNULL:!MD5;
location / {
location / {
# Ograniczenie liczby żądań
limit_req zone=ip_limit burst=20 nodelay;
proxy_pass http://arti24-container:3337;
# 🔹 Doocelowa domena
proxy_set_header X-Redirect-Domain plecianki.pl;
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;
@ -25,5 +24,6 @@ server {
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Port $server_port;
}
}
}