Files
dnf-repo-test/docker/nginx.conf
T

11 lines
143 B
Nginx Configuration File

server {
listen 80;
server_name _;
root /data/repo;
autoindex on;
location / {
try_files $uri $uri/ =404;
}
}