15 lines
289 B
Plaintext
15 lines
289 B
Plaintext
server {
|
|
listen 9000;
|
|
server_name _;
|
|
root /repo;
|
|
|
|
location / {
|
|
charset utf-8;
|
|
autoindex on;
|
|
autoindex_exact_size off;
|
|
autoindex_localtime on;
|
|
# auth_basic "Needs to auth";
|
|
# auth_basic_user_file /etc/nginx/.htpasswd;
|
|
}
|
|
}
|