2014-08-13 11:28:11 +00:00
|
|
|
server {
|
|
|
|
listen 80 default_server;
|
|
|
|
listen [::]:80 default_server ipv6only=on;
|
|
|
|
|
2014-11-16 12:56:50 +00:00
|
|
|
root /repository/debian;
|
2014-08-13 11:28:11 +00:00
|
|
|
index index.html index.htm;
|
|
|
|
|
|
|
|
# Make site accessible from http://localhost/
|
|
|
|
server_name localhost;
|
|
|
|
autoindex on;
|
|
|
|
|
|
|
|
location / {
|
|
|
|
try_files $uri $uri/ =404;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|