first commit

This commit is contained in:
illustris 2022-06-05 22:41:19 +05:30
commit 29d71b4939
3 changed files with 10 additions and 0 deletions

1
html/index.html Normal file
View File

@ -0,0 +1 @@
kek

8
nginx.conf Normal file
View File

@ -0,0 +1,8 @@
server {
server_name app;
listen 8080;
location / {
root /html;
}
}

1
start.sh Normal file
View File

@ -0,0 +1 @@
docker run --rm -it --net=host -v $PWD/html:/html -v $PWD/nginx.conf:/etc/nginx/conf.d/default.conf nginx