This commit is contained in:
Lev 2026-04-19 17:46:56 +03:00
parent 11a84f4926
commit 4c4d325245
19 changed files with 226 additions and 279 deletions

View file

@ -1,19 +0,0 @@
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name spectralvpn.ru;
ssl_certificate /etc/letsencrypt/live/spectralvpn.ru/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/spectralvpn.ru/privkey.pem;
gzip on;
gzip_types text/css text/javascript text/plain application/javascript application/json;
gzip_min_length 1000;
root /var/www/html/spectralvpn.ru;
index index.html;
location / {
try_files $uri $uri/ =400;
}
}