add docker

This commit is contained in:
2023-06-13 21:26:11 +03:00
parent 5e6bdacdbb
commit 618fc16ed8
4 changed files with 41 additions and 0 deletions

10
nginx/nginx.conf Normal file
View File

@ -0,0 +1,10 @@
server {
listen 80;
# path to files for serve
root /usr/share/nginx/html;
location / {
try_files $uri $uri/ /index.html;
}
}