21 lines
216 B
Nginx Configuration File
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;
|
|
}
|
|
}
|
|
}
|