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