server { listen 80; server_name neyavpn.ru www.neyavpn.ru; root /var/www/neyavpn; index index.html; location / { try_files $uri $uri/ =404; } location /api/ { # Прокидываем API-запросы на бэкенд proxy_pass http://localhost:8080; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } } server { listen 80; server_name de.neyavpn.ru; root /var/www/de.neyavpn; index index.html; location / { try_files $uri $uri/ =404; } }