未找到 VirtualHost 服务器

未找到 VirtualHost 服务器

修改 httpd.conf 以包含我的虚拟主机配置后, Include /private/etc/apache2/extra/httpd-vhosts.conf我将以下内容添加到我的虚拟主机配置文件中:

#
# Virtual Hosts
#
# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at 
# <URL:http://httpd.apache.org/docs/2.2/vhosts/>
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.

#
# Use name-based virtual hosting.
#
NameVirtualHost *:8085

#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for all requests that do not
# match a ServerName or ServerAlias in any <VirtualHost> block.
#
#<VirtualHost *:80>
#    ServerAdmin [email protected]
#    DocumentRoot "/usr/docs/dummy-host.example.com"
#    ServerName dummy-host.example.com
#    ServerAlias www.dummy-host.example.com
#    ErrorLog "/private/var/log/apache2/dummy-host.example.com-error_log"
#    CustomLog "/private/var/log/apache2/dummy-host.example.com-access_log" common
#</VirtualHost>

#<VirtualHost *:80>
#    ServerAdmin [email protected]
#    DocumentRoot "/usr/docs/dummy-host2.example.com"
#    ServerName dummy-host2.example.com
#    ErrorLog "/private/var/log/apache2/dummy-host2.example.com-error_log"
#    CustomLog "/private/var/log/apache2/dummy-host2.example.com-access_log" common
#</VirtualHost>

<VirtualHost *:8085>
    ServerName 127.0.0.1:8085
    DocumentRoot "/Users/path/to/root/"
</VirtualHost>

然后我重启了 Apache 服务器,它提示找不到 127.0.0.1。我检查了所有操作是否正确,但还是搞不清楚问题出在哪里。

  • 我想要提供的目录的路径存在。
  • sudo apachectl -S返回

>

VirtualHost configuration:
wildcard NameVirtualHosts and _default_ servers:
*:8085                 is a NameVirtualHost
         default server 127.0.0.1 (/private/etc/apache2/extra/httpd-vhosts.conf:44)
         port 8085 namevhost 127.0.0.1 (/private/etc/apache2/extra/httpd-vhosts.conf:44)
Syntax OK

<

有人能告诉我如何运行我的虚拟主机吗?

[编辑]

错误日志(/var/log/apache2/error_log):

[Sat Jul 19 19:12:38 2014] [notice] SIGHUP received.  Attempting to restart
[Sat Jul 19 19:12:38 2014] [notice] Digest: generating secret for digest authentication ...
[Sat Jul 19 19:12:38 2014] [notice] Digest: done
[Sat Jul 19 19:12:38 2014] [notice] Apache/2.2.26 (Unix) DAV/2 mod_ssl/2.2.26 OpenSSL/0.9.8y configured -- resuming normal operations

答案1

在这种情况下,我认为您想要的是基于 IP 的虚拟主机:

<VirtualHost 127.0.0.1:8085>
    DocumentRoot "/Users/path/to/root/"
</VirtualHost>

你能进一步解释一下你想要实现的目标吗?

相关内容