1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-20 13:58:42 +00:00
dockerfiles/webkit/etc/nginx.cfg
2015-01-28 16:02:31 +08:00

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;
}
}