Initial rough commit to save the code before cleanup

This commit is contained in:
tanshu
2020-04-03 09:24:02 +05:30
commit e0e7b07468
29 changed files with 942 additions and 0 deletions

View File

@ -0,0 +1,12 @@
server {
listen 80;
server_name {{ http_host }};
location / {
proxy_pass http://localhost:8888;
}
}