f3293008b0
* Add Docker Desktop Development Environments config * Use nginx image with read-only bind mount instead of building a custom image * Upgrade Go dependencies Co-authored-by: Guillaume Lours <guillaume@lours.me> Signed-off-by: Milas Bowman <milas.bowman@docker.com>
9 lines
165 B
Nginx Configuration File
Executable File
9 lines
165 B
Nginx Configuration File
Executable File
server {
|
|
listen 80;
|
|
server_name localhost;
|
|
location / {
|
|
proxy_pass http://backend:8000;
|
|
proxy_http_version 1.1;
|
|
}
|
|
}
|