mirror of
https://github.com/docker/awesome-compose.git
synced 2025-04-25 18:28:07 +02:00
* Add Docker Desktop Development Environments config * Upgrade to Go 1.18 * Replace nginx build with image + read-only bind mount Signed-off-by: Milas Bowman <milas.bowman@docker.com>
9 lines
166 B
Nginx Configuration File
Executable file
9 lines
166 B
Nginx Configuration File
Executable file
server {
|
|
listen 80;
|
|
server_name localhost;
|
|
location / {
|
|
proxy_pass http://backend:8000;
|
|
proxy_http_version 1.1;
|
|
}
|
|
|
|
}
|