ansible-example/files/my-site.nginx.conf

15 lines
203 B
Plaintext
Raw Normal View History

2023-01-25 04:46:43 +00:00
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;
}
}