10 lines
162 B
Plaintext
10 lines
162 B
Plaintext
|
server {
|
||
|
listen 80;
|
||
|
server_name {{ site_name }};
|
||
|
|
||
|
location / {
|
||
|
root /var/www/html/{{ site_name }};
|
||
|
index index.html;
|
||
|
}
|
||
|
}
|