🐳 Alpha of Dashy-lite Docker container

This commit is contained in:
Alicia Sykes
2021-10-31 20:41:22 +00:00
parent f489a92e28
commit d0d01e65ec
2 changed files with 37 additions and 0 deletions

15
docker/nginx.conf Normal file
View File

@@ -0,0 +1,15 @@
worker_processes 4;
events { worker_connections 1024; }
http {
server {
listen 80;
root /usr/share/nginx/html;
include /etc/nginx/mime.types;
location /appui {
try_files $uri /index.html;
}
}
}