mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-23 01:39:27 +02:00
13 lines
192 B
INI
13 lines
192 B
INI
server {
|
|
listen 80 default_server;
|
|
|
|
root /data;
|
|
index index.html index.htm;
|
|
|
|
location / {
|
|
autoindex on;
|
|
expires max;
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
}
|