|
|
我在配置好httpd后,重新启动服务,出现以下的错误提示:
starting httpd:httpd:could not determine the server's fully qualified domain name, using 127.0.0.1 for servername.
我的httpd.conf 文件配置如下:
NameVirtualHost 192.168.0.14
<VirtualHost 192.168.0.14>
ServerName www14.rayman.com
ServerAdmin webmaster@www14.rayman.com
DocumentRoot /var/www/html
ErrorLog logs/www14.rayman.com-error_log
CustomLog logs/www14.rayman.com-access_log combined
<Directory /var/www/html>
Options Indexes Includes
</Directory>
</VirtualHost> |
|