Laravel 错误连接被拒绝,因为通过浏览器访问流浪客

Laravel 错误连接被拒绝,因为通过浏览器访问流浪客,laravel,apache,vagrant,Laravel,Apache,Vagrant,我遇到了头衔的问题 流浪汉档案 config.vm.network "private_network", ip: "192.168.33.10" config.vm.synced_folder "./", "/var/www/app", :owner => "vagrant", :group => "vagrant", :mount_options => ["dmode=777,fmode=775"] httpd.conf DocumentRoot "/var/www/app

我遇到了头衔的问题

流浪汉档案

config.vm.network "private_network", ip: "192.168.33.10"
config.vm.synced_folder "./", "/var/www/app",
:owner => "vagrant",
:group => "vagrant",
:mount_options => ["dmode=777,fmode=775"]
httpd.conf

DocumentRoot "/var/www/app/public"

<Directory "/var/www/app/public">
...
/etc/httpd/log/error\u log

no logs about this
/etc/httpd/log/access\u log

no logs about this
netstat

> netstat -ant | grep 80
tcp        0      0 :::80                       :::*                        LISTEN
lsof

服务

> sudo service httpd status
httpd (pid  3991) is running...
我对此一无所知


您能帮助我吗???

您似乎正在尝试通过默认使用端口443的
https
访问您的站点。您似乎正在尝试通过默认使用端口443的
https
访问您的站点。
sudo lsof -i:80
COMMAND  PID    USER   FD   TYPE DEVICE SIZE/OFF NODE NAME
httpd   3991    root    4u  IPv6  15275      0t0  TCP *:http (LISTEN)
httpd   3994 vagrant    4u  IPv6  15275      0t0  TCP *:http (LISTEN)
httpd   3995 vagrant    4u  IPv6  15275      0t0  TCP *:http (LISTEN)
httpd   3996 vagrant    4u  IPv6  15275      0t0  TCP *:http (LISTEN)
httpd   3997 vagrant    4u  IPv6  15275      0t0  TCP *:http (LISTEN)
httpd   3998 vagrant    4u  IPv6  15275      0t0  TCP *:http (LISTEN)
httpd   4105 vagrant    4u  IPv6  15275      0t0  TCP *:http (LISTEN)
httpd   4107 vagrant    4u  IPv6  15275      0t0  TCP *:http (LISTEN)
httpd   4108 vagrant    4u  IPv6  15275      0t0  TCP *:http (LISTEN)
> sudo service httpd status
httpd (pid  3991) is running...