Dockerize

This commit is contained in:
2025-03-01 11:54:51 -06:00
parent 77f69becf9
commit f85f1ec3f6
7 changed files with 37 additions and 1 deletions

15
nginx.conf Normal file
View File

@@ -0,0 +1,15 @@
server {
listen 80;
listen [::]:80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ /index.html;
}
location = /50x.html {
root /usr/share/nginx/html;
}
}