mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-28 09:08:36 +02:00
15 lines
258 B
INI
15 lines
258 B
INI
server {
|
|
listen 80 default_server;
|
|
|
|
root /data;
|
|
index index.html index.htm;
|
|
|
|
location / {
|
|
autoindex on;
|
|
autoindex_exact_size off;
|
|
autoindex_localtime on;
|
|
expires max;
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
}
|