awesome-compose/samples/nginx-gohttp_1/nginx.conf
Anca Iordache 4a619921b9 Compose app skeletons
Signed-off-by: Anca Iordache <anca.iordache@docker.com>
2020-02-13 14:14:36 +01:00

6 lines
76 B
Nginx Configuration File

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