18 lines
638 B
Text
Executable file
18 lines
638 B
Text
Executable file
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
access_log /var/log/nginx/booyahtv.access.log combined;
|
|
|
|
root /var/www/booyahtv/;
|
|
index index.html index.htm index.nginx-debian.html;
|
|
|
|
server_name booyahtv.zzls.xyz;
|
|
|
|
listen 443 ssl; # managed by Certbot
|
|
ssl_certificate /etc/letsencrypt/live/zzls.xyz/fullchain.pem; # managed by Certbot
|
|
ssl_certificate_key /etc/letsencrypt/live/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
|
|
|
|
}
|