ansible-example/files/my-site.nginx.conf
2023-01-24 23:46:43 -05:00

15 lines
203 B
Plaintext

server {
listen 80;
root /var/www/html/my-site;
index index.html index.htm;
server_name localhost;
location / {
default_type "text/html";
try_files $uri.html $uri $uri/ =404;
}
}