This commit is contained in:
Administrator
2022-10-03 16:32:43 +03:00
commit 149c251bfa
15 changed files with 315 additions and 0 deletions

2
nginx/Dockerfile Normal file
View File

@@ -0,0 +1,2 @@
FROM nginx
COPY nginx.conf /etc/nginx/nginx.conf

12
nginx/nginx.conf Normal file
View File

@@ -0,0 +1,12 @@
events {}
http {
server {
listen 1238;
location / {
proxy_pass http://api:5000/;
}
}
}