Apache2 - AH00112:警告:DocumentRoot 不存在

Apache2 - AH00112:警告:DocumentRoot 不存在

我按照本指南在 Apache 下设置了两个虚拟主机。

https://www.digitalocean.com/community/tutorials/how-to-set-up-apache-virtual-hosts-on-ubuntu-14-04-lts

重新启动 Apache 服务时,我收到以下警告。有人能帮我摆脱它们吗?

当更新 A 记录以指向此服务器的 IP 时,无法显示页面。

sudo service apache2 restart
* Restarting web server apache2                                                                                           
AH00112: Warning: DocumentRoot [/var/www/domain1.com.au/public_html] does not exist
AH00112: Warning: DocumentRoot [/var/www/domain2.com/public_html] does not exist
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1. Set the 'ServerName' directive globally to suppress this message

/var/www/domain1.com.au 的目录列表:

drwxr-xr-x 7 webuser webuser 4.0K Nov 13 15:44 pubic_html

答案1

仔细查看输出 - 您的文件名有错误。pubic_html 与 public_html

这可能是一个错误。更正此错误并重新启动 apache。

第三个并不是致命的,但您可能需要查看虚拟主机和全局配置文件中的 ServerName 变量。

相关内容