2014-01-08 49 views
0

我试图将新的Ubuntu 13.10安装中的多个虚拟主机配置为开发服务器。它只需要服务于自己。 Apache服务器版本:阿帕奇/ 2.4.6(Ubuntu的)无法使用Apache 2.4创建虚拟主机

我读过http://httpd.apache.org/docs/2.4/vhosts/name-based.html https://help.ubuntu.com/13.04/serverguide/httpd.html和许多其他网站试图弄清楚这一点。

http://localhost正在工作,但未找到http://ncacaa.local。我错过了什么? ping http://nacaa.local回报ping: unknown host http://ncacaa.local

这里是/etc/apache2/sites-available/ncacaa.conf

<VirtualHost *:80> 
    DocumentRoot "/var/www/vhosts/htdocs-ncacaa" 
    ServerName ncacaa.local 
    ErrorLog "/var/log/apache2/ncacaa.localhost-error.log" 
    <Directory "/var/www/vhosts/htdocs-ncacaa"> 
     Order allow,deny 
     Allow from all 
     Require all granted 
    </Directory> 
</VirtualHost> 

的内容有一个符号链接,它由a2ensite

创建的已启用站点目录

这里是不是在000-default.conf文件注释:

<VirtualHost *:80> 
    ServerAdmin [email protected]***.com 
    DocumentRoot /var/www 
    <Directory "/var/www"> 
      AllowOverride FileInfo 
      Options Indexes FollowSymLinks 
      Order allow,deny 
      Allow from all 
      Require all granted 
    </Directory> 
    ErrorLog ${APACHE_LOG_DIR}/error.log 
    CustomLog ${APACHE_LOG_DIR}/access.log combined 
</VirtualHost> 

这里什么没有在apache.conf文件中注释掉:

Timeout 300 
KeepAlive On 
MaxKeepAliveRequests 100 
KeepAliveTimeout 5 
User ${APACHE_RUN_USER} 
Group ${APACHE_RUN_GROUP} 
HostnameLookups Off 
ErrorLog ${APACHE_LOG_DIR}/error.log 
LogLevel warn 
LogLevel warn 
<Directory /> 
    Options FollowSymLinks 
    AllowOverride None 
    Require all denied 
</Directory> 
<Directory /usr/share> 
    AllowOverride None 
    Require all granted 
</Directory> 
<Directory /var/www/> 
    Options Indexes FollowSymLinks 
    AllowOverride None 
    Require all granted 
</Directory> 
AccessFileName .htaccess 
<FilesMatch "^\.ht"> 
    Require all denied 
</FilesMatch> 
LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined 
LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined 
LogFormat "%h %l %u %t \"%r\" %>s %O" common 
LogFormat "%{Referer}i -> %U" referer 
LogFormat "%{User-agent}i" agent 
IncludeOptional conf-enabled/*.conf 
IncludeOptional sites-enabled/* 
ServerName localhost:80 

在此先感谢!

回答

3

还有将需要在配置一条线,打开虚拟主机:

NameVirtualHost *:80 

虽然错误“平http://nacaa.local回报平:未知的主机http://ncacaa.local”是指你的DNS没有解决。您需要添加到/ etc/hosts或设置dns。

+0

谢谢!我需要编辑/ etc/hosts来修复它。 –

+0

添加NameVirtualHost使VHosting在我的Apache 2.4上工作。谢谢 – latvian