nginx.conf 76 B

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