HomeLab/mirror/nginx.conf
2025-02-25 23:27:34 +01:00

21 lines
216 B
Nginx Configuration File

user www;
worker_processes 4;
events {
worker_connections 64;
}
http {
server {
listen 80;
server_name exemple.com;
root /srv/mirror;
location / {
autoindex on;
autoindex_exact_size off;
}
}
}