13 lines
185 B
Plaintext
13 lines
185 B
Plaintext
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
autoindex on;
|
|
autoindex_exact_size off;
|
|
autoindex_localtime on;
|
|
|
|
location / {
|
|
root /files;
|
|
}
|
|
}
|