导语
今天在使用 Guzzle 的时候,出现了 [curl] 7: Failed to connect to xxx port 80: Connection refused
这个问题。没有查到相关的中文资料,最终踩了一些坑后解决。简而言之就是修改 docker-compose.yml
中关于 nginx 的配置,然后重新安装就可以了。
修改配置
在 NGINX Server
修改如下
networks:
frontend:
aliases:
- you_site
backend:
aliases:
- you_site
重装 nginx
- 切换到
laradock
中 docker-compose stop nginx
docker-compose build --no-cache nginx
docker-compose up -d nginx
参考资料:GitHub issues。
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。