Pack the website into container

This commit is contained in:
mr-vercetti
2022-11-27 18:08:07 +01:00
parent 171988a9ff
commit e5699b6054
11 changed files with 29 additions and 5 deletions

12
nginx/nginx.conf Normal file
View File

@@ -0,0 +1,12 @@
events { }
http {
include /etc/nginx/mime.types;
server_tokens off;
server {
listen 80;
listen [::]:80;
root /usr/share/nginx/html;
error_page 404 /404.html;
default_type application/octet-stream;
}
}