15 lines
233 B
Text
15 lines
233 B
Text
|
server {
|
||
|
listen 80 default_server;
|
||
|
server_name _;
|
||
|
|
||
|
charset utf-8;
|
||
|
server_tokens off;
|
||
|
|
||
|
root /var/www/html;
|
||
|
location / {
|
||
|
index index.html;
|
||
|
autoindex on;
|
||
|
autoindex_exact_size off;
|
||
|
}
|
||
|
}
|