blob: c66ad853d15d1f12a3c1edb0623bb1f2abe7d89d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# vi: ft=nginx
server {
listen 80;
#server_name localhost;
location / {
root /srv/arch/;
autoindex on;
autoindex_exact_size off;
autoindex_format html;
autoindex_localtime on;
}
}
|