43 lines
1.4 KiB
Nginx Configuration File
43 lines
1.4 KiB
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name uno-click.pip-test.ru;
|
|
|
|
# Redirect HTTP to HTTPS
|
|
return 301 https://$server_name$request_uri;
|
|
}
|
|
|
|
server {
|
|
listen 443 ssl http2;
|
|
server_name uno-click.pip-test.ru;
|
|
|
|
# SSL сертификаты (Let's Encrypt)
|
|
ssl_certificate /etc/letsencrypt/live/uno-click.pip-test.ru/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/uno-click.pip-test.ru/privkey.pem;
|
|
ssl_protocols TLSv1.2 TLSv1.3;
|
|
ssl_ciphers HIGH:!aNULL:!MD5;
|
|
ssl_prefer_server_ciphers on;
|
|
|
|
# Next.js сайт
|
|
location / {
|
|
proxy_pass http://uno-site:3000;
|
|
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-Forwarded-Proto $scheme;
|
|
proxy_cache_bypass $http_upgrade;
|
|
}
|
|
|
|
# BFF API (опционально можно проксировать через nginx)
|
|
location /api/ {
|
|
proxy_pass http://uno-bff:3001;
|
|
proxy_http_version 1.1;
|
|
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;
|
|
}
|
|
}
|