nginx.conf 85 B

123456
  1. server {
  2. listen 80;
  3. location / {
  4. proxy_pass http://$FLASK_SERVER_ADDR;
  5. }
  6. }