mirror of
https://github.com/simon987/public-fileindex-docker.git
synced 2025-04-04 08:53:00 +00:00
31 lines
394 B
Nginx Configuration File
31 lines
394 B
Nginx Configuration File
user nginx;
|
|
worker_processes 1;
|
|
|
|
pid /var/run/nginx.pid;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
include /etc/nginx/mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
access_log off;
|
|
error_log off;
|
|
|
|
sendfile on;
|
|
|
|
keepalive_timeout 65;
|
|
|
|
server {
|
|
listen 80;
|
|
|
|
root /files;
|
|
|
|
location / {
|
|
autoindex on;
|
|
}
|
|
}
|
|
}
|