我开始使用 Zend FrameWork,但我遇到了麻烦。我尝试在 10 分钟内遵循从零到 Zend 框架的超级指南,但它一无所获。
我也收到了那条令人讨厌的信息
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
... waiting apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
两次。
虽然我设法解决了这个问题,但这就是我的本地服务器的样子。.
这就是我的/etc/hosts
样子。
127.0.0.1 localhost
127.0.0.1 prueba.local
127.0.1.1 dradis
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
而且,根据1,我的虚拟主机配置应该如何。这是在/sites-avaliable
但符号链接到/sites-enabled
.
prueba.local
:
<VirtualHost *:80>
ServerName prueba.local
DocumentRoot /home/seba/solartekka/test/prueba/public
</VirtualHost>
/home/seba/solartekka/test/prueba
是我有我的项目的地方。
我已经完成了两天的战斗,我的精神被粉碎了。有谁知道可能发生的事情?
我试图提供尽可能多的相关信息,但如果您需要更多信息,我会很乐意提供。
谢谢!