battleship-back/nginx/nginx.conf
Administrator 0e9ce6e2f8 net
2022-08-22 14:53:06 +03:00

12 lines
148 B
Nginx Configuration File

events {}
http {
server {
listen 80;
location /api/ {
proxy_pass http://backend:8000/api/;
}
}
}