1
0
Fork 0
mirror of https://github.com/docker/awesome-compose.git synced 2025-04-25 10:18:07 +02:00
awesome-compose/nginx-golang-mysql/proxy/nginx.conf
Milas Bowman d9d96efc58 nginx-golang-mysql: add dev envs support (#274)
* 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>
Signed-off-by: Andrew Maguire <andrewm4894@gmail.com>
2023-07-19 15:31:43 +01:00

8 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;
}
}