nginx-basic-lb/nginx.conf

14 lines
178 B
Nginx Configuration File

user nginx;
events {
worker_connections 1000;
}
http {
server {
listen 80;
location / {
proxy_pass http://${APP_NAME}:${APP_PORT};
}
}
}