2017-10-27 11:38:02 +02:00
|
|
|
server {
|
|
|
|
listen 80 default_server;
|
|
|
|
server_name _;
|
|
|
|
|
|
|
|
charset utf-8;
|
|
|
|
server_tokens off;
|
|
|
|
|
|
|
|
root /var/www/html;
|
|
|
|
location / {
|
|
|
|
index index.html;
|
2017-10-29 21:24:48 +01:00
|
|
|
autoindex on;
|
|
|
|
autoindex_exact_size off;
|
2017-10-27 11:38:02 +02:00
|
|
|
}
|
|
|
|
}
|