mirror of
https://github.com/docker/awesome-compose.git
synced 2025-04-25 10:18:07 +02:00
* Add Docker Desktop Developer Environments config
* Upgrade from Go 1.13 (🙀) to 1.18
* Rename `frontend` -> `proxy` for clarity & consistency
with other samples
* Add Chi as a dependency to provide an example of Go
module dependencies for parity with other samples
Signed-off-by: Milas Bowman <milas.bowman@docker.com>
6 lines
No EOL
76 B
Nginx Configuration File
6 lines
No EOL
76 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
location / {
|
|
proxy_pass http://backend:80;
|
|
}
|
|
} |