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