Files
rproxy/roles/rproxy/files/repo.conf
2024-09-29 02:24:42 +03:00

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