gpt4 book ai didi

laravel - Laradock 404 找不到 nginx

转载 作者:行者123 更新时间:2023-12-05 06:29:19 27 4
gpt4 key购买 nike

我正在尝试为我的 Laravel 项目设置 Laradock。我从一个新的 laravel 项目开始,只是为了在尝试我当前的项目之前进行测试。我按照教程进行操作,但在步骤中的某个地方,我想我一定搞砸了,因为当我浏览 URL 时,我得到一个“404 not found nginx”。有人以前经历过这种情况或知道可能出了什么问题?提前致谢!

404 error in browser

我的 example.conf 在/var/wwwlaradock/nginx/sites

server {

listen 80;
listen [::]:80;

server_name example.local;
root /var/www/example/public;
index index.php index.html index.htm;

location / {
try_files $uri $uri/ /index.php$is_args$args;
}

location ~ \.php$ {
try_files $uri /index.php =404;
fastcgi_pass php-upstream;
fastcgi_index index.php;
fastcgi_buffers 16 16k;
fastcgi_buffer_size 32k;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}

location ~ /\.ht {
deny all;
}

location /.well-known/acme-challenge/ {
root /var/www/letsencrypt/;
log_not_found off;
}

error_log /var/log/nginx/laravel_error.log;
access_log /var/log/nginx/laravel_access.log;
}

我的主机文件

##
# 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 example.local

我的 laravel 项目的名称是“example”,位于 /var/www

最佳答案

我遇到了同样的问题。

问题是我在 nginx 的 [your-name].conf 文件中的参数“root”中的错误。

它应该与您登录 laradock“工作区”(使用“docker-compose exec workspace bash”)时显示的路径相匹配,例如“/var/www”。

在你的情况下它看起来应该是字符串

root/var/www/public

代替

root/var/www/example/public

关于laravel - Laradock 404 找不到 nginx,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53649263/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com