mirror of
https://github.com/docker/awesome-compose.git
synced 2025-04-19 15:28:06 +02:00
9 lines
126 B
Text
9 lines
126 B
Text
|
server {
|
||
|
listen 80;
|
||
|
server_name localhost;
|
||
|
location / {
|
||
|
proxy_pass http://backend:8000;
|
||
|
}
|
||
|
|
||
|
}
|