22 lines
727 B
Text
Executable file
22 lines
727 B
Text
Executable file
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
access_log /var/log/nginx/i.access.log combined;
|
|
|
|
# root /mnt/blockstorage/i/files/;
|
|
index index.html index.htm index.nginx-debian.html;
|
|
|
|
server_name i.zzls.xyz;
|
|
|
|
location / {
|
|
proxy_pass http://localhost:7494;
|
|
}
|
|
|
|
listen 443 ssl http2; # managed by Certbot
|
|
ssl_certificate /etc/letsencrypt/live/i2.zzls.xyz/fullchain.pem; # managed by Certbot
|
|
ssl_certificate_key /etc/letsencrypt/live/i2.zzls.xyz/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
|
|
|
|
}
|