This commit is contained in:
Administrator
2022-08-22 14:43:21 +03:00
commit bec3d67171
22 changed files with 681 additions and 0 deletions

2
nginx/Dockerfile Normal file
View File

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

15
nginx/nginx.conf Normal file
View File

@@ -0,0 +1,15 @@
events {}
http {
server {
listen 80;
location /api/ {
proxy_pass http://backend:8000/api/;
}
; location / {
; proxy_pass http://frontend:3000/;
; }
}
}