develop #1

Merged
Prygoon merged 8 commits from develop into master 2024-08-25 01:37:42 +03:00
Showing only changes of commit dd75d1a1fc - Show all commits

View File

@ -10,8 +10,7 @@ http {
}
location / {
root /var/www/html;
index index.html;
return 301 https://$host$request_uri;
}
}
@ -23,8 +22,11 @@ http {
ssl_certificate_key /etc/letsencrypt/live/git.evil-bird.ru/privkey.pem;
location / {
root /var/www/html;
index index.html;
proxy_pass http://10.10.1.10:3000;
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-Forwarded-Proto $scheme;
}
}
}
}