38 lines
1.1 KiB
Nginx Configuration File
38 lines
1.1 KiB
Nginx Configuration File
|
server {
|
||
|
root /var/www/html;
|
||
|
index index.html index.htm index.nginx-debian.html;
|
||
|
server_name admin360.kumi.host; # managed by Certbot
|
||
|
|
||
|
location /.well-known/ {
|
||
|
try_files $uri $uri/ =404;
|
||
|
}
|
||
|
|
||
|
location /static {
|
||
|
alias /opt/vpnmanager/static/static_root/;
|
||
|
}
|
||
|
|
||
|
location /js/ {
|
||
|
root /opt/vpnmanager/static/;
|
||
|
}
|
||
|
|
||
|
location / {
|
||
|
uwsgi_pass 127.0.0.1:9360;
|
||
|
uwsgi_read_timeout 300;
|
||
|
include uwsgi_params;
|
||
|
}
|
||
|
|
||
|
listen 136.243.186.63:443 ssl; # managed by Certbot
|
||
|
ssl_certificate /etc/letsencrypt/live/admin360.kumi.host/fullchain.pem; # managed by Certbot
|
||
|
ssl_certificate_key /etc/letsencrypt/live/admin360.kumi.host/privkey.pem; # managed by Certbot
|
||
|
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
|
||
|
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
|
||
|
}
|
||
|
|
||
|
server {
|
||
|
return 301 https://admin360.kumi.host$request_uri;
|
||
|
server_name admin360.kumi.host;
|
||
|
|
||
|
listen [::]:80 default_server;
|
||
|
listen 80 default_server;
|
||
|
}
|