docker 运行laravel,nginx这样配置为何不可?

发布于 2022-09-12 22:17:38 字数 1710 浏览 24 评论 0

docker的nginx应该如何配置才可以运行项目。
本机电脑系统:mac
nginx配置如下如何修改

想要实现的效果:

docker 运行laravel,nginx要如何配置?

将localhost:8083/yxfxs/public 访问laravel 改为 yxfxs.test即可访问

nginx配置:

server {
    listen       80;
    server_name  localhost;

    location / {
        index  index.html index.htm index.php;
        try_files $uri $uri/ /index.php?$query_string;
    }

    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }

    location ~ \.php$ {
        fastcgi_pass   php:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  /www/$fastcgi_script_name;
        include        fastcgi_params;
    }

}

hosts配置。如下:

##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting.  Do not change this entry.
##
127.0.0.1       localhost
255.255.255.255 broadcasthost
::1             localhost
127.0.0.1       content.test

127.0.0.1       AcronisDriveSearchPlugin
# Added by Docker Desktop
# To allow the same kube context to work on the host and the container:
127.0.0.1 kubernetes.docker.internal
# End of section

laravel 项目目录:

docker 运行laravel,nginx要如何配置?

docker 镜像:

docker 运行laravel,nginx要如何配置?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦途 2022-09-19 22:17:38

启动 php的时候加上 -v 参数,把本地路径挂到镜像里,比如把 laravel项目挂到 /var/www/laravel 路径下面

docker run --name phpimagename -v "本地的laravel绝对路径:/var/www/laravel"  php:8-fpm

启动 nginx,

docker run -p "8083:80" nginx

修改nginx镜像中的配置,

fastcgi_pass   phpimagename:9000;
fastcgi_param  SCRIPT_FILENAME  /var/www/laravel/public$fastcgi_script_name;

访问 localhost:8083

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文