Initial commit

This commit is contained in:
simon987 2021-06-13 08:32:23 -04:00
commit 774f4bd766
2 changed files with 39 additions and 0 deletions

9
docker-compose.yml Normal file
View File

@ -0,0 +1,9 @@
version: "3"
services:
web:
image: nginx:alpine
ports:
- 5555:80
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
- /home/simon/Downloads:/files:ro

30
nginx.conf Normal file
View File

@ -0,0 +1,30 @@
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;
}
}
}