mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-16 11:37:32 +02:00
13 lines
193 B
INI
13 lines
193 B
INI
|
server {
|
||
|
listen 80 default_server;
|
||
|
|
||
|
root /data;
|
||
|
index index.html index.htm;
|
||
|
|
||
|
location / {
|
||
|
autoindex on;
|
||
|
expires 365d;
|
||
|
try_files $uri $uri/ =404;
|
||
|
}
|
||
|
}
|