Unstable
This commit is contained in:
parent
11a84f4926
commit
4c4d325245
19 changed files with 226 additions and 279 deletions
19
Frontend/Nginx/spectralvpn.ru.nginx
Normal file
19
Frontend/Nginx/spectralvpn.ru.nginx
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
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 /usr/share/nginx/html/;
|
||||
index index.html;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ =400;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue