Files
apt-mirror/nginx.conf
T
2026-02-23 21:28:15 +03:00

12 lines
196 B
Nginx Configuration File

server {
listen 80;
server_name _; # Responds to all hostnames
root /mirror;
autoindex on; # Allows directory listing
location / {
try_files $uri $uri/ =404;
}
}