13 lines
217 B
Text
13 lines
217 B
Text
server {
|
|
server_name {{ site }};
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
root {{ path_site }};
|
|
|
|
index index.html index.htm index.nginx-debian.html;
|
|
|
|
location / {
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
}
|