12 lines
354 B
Plaintext
12 lines
354 B
Plaintext
server {
|
|
ssl_certificate /home/podman/wild-bchs/fullchain.pem;
|
|
ssl_certificate_key /home/podman/wild-bchs/privkey.pem;
|
|
ssl_protocols TLSv1.2 TLSv1.3;
|
|
listen 443 ssl http2;
|
|
server_name *.bchs.duckdns.org;
|
|
root /var/www/html-bchs;
|
|
index index.html index.htm;
|
|
location / {
|
|
try_files $uri $uri.html $uri/ =404;
|
|
}
|
|
} |