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