1
0
Fork 0
mirror of https://github.com/docker/awesome-compose.git synced 2025-04-26 10:43:35 +02:00
awesome-compose/samples/nginx-golang/frontend/nginx.conf
Anca Iordache 48341239de update readme.md for all samples
Signed-off-by: Anca Iordache <anca.iordache@docker.com>
2020-03-06 20:44:32 +01:00

6 lines
No EOL
76 B
Nginx Configuration File

server {
listen 80;
location / {
proxy_pass http://backend:80;
}
}