nginx-golang: add dev envs support (#273)
* 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>
This commit is contained in:
parent
7f5179ea3e
commit
42f6713231
9 changed files with 119 additions and 34 deletions
6
nginx-golang/proxy/nginx.conf
Normal file
6
nginx-golang/proxy/nginx.conf
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
server {
|
||||
listen 80;
|
||||
location / {
|
||||
proxy_pass http://backend:80;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue