Spaces:
Runtime error
Runtime error
File size: 127 Bytes
92678a7 |
1 2 3 4 5 6 7 8 9 10 11 |
upstream backend {
server app:8000;
}
server {
listen 80;
location / {
proxy_pass http://backend;
}
} |