nginx/mdwalters.conf

14 lines
252 B
Text
Raw Normal View History

2023-11-15 12:58:45 +00:00
# example
2023-11-15 01:34:13 +00:00
server {
listen 443 ssl;
listen [::]:443 ssl;
2023-11-15 12:58:45 +00:00
server_name example.mdwalters.exozy.me;
2023-11-15 01:34:13 +00:00
2023-11-15 12:58:45 +00:00
root /srv/http/pages/somefolder;
2023-11-15 01:34:13 +00:00
index index.html;
location / {
2023-11-15 12:58:45 +00:00
try_files $uri $uri.html $uri/ =404;
2023-11-15 01:34:13 +00:00
}
}