battleship-back/nginx/nginx.conf
Administrator cb7e066504 nginx
2022-08-30 21:32:40 +03:00

15 lines
227 B
Nginx Configuration File

events {}
http {
server {
listen 1236;
location /api/ {
proxy_pass http://backend:8000/api/;
}
location / {
proxy_pass http://frontend:3000/;
}
}
}