9 lines
122 B
Text
9 lines
122 B
Text
|
server {
|
||
|
listen 80;
|
||
|
server_name _;
|
||
|
|
||
|
location / {
|
||
|
root /var/www/html;
|
||
|
index index.html;
|
||
|
}
|
||
|
}
|