我在Apache服务器(Arch Linux)上有mamy虚拟主机,它们位于127.0.0.2,127.0.0.10等主机上。其中一个我想从本地网络提供,所以我可以使用像192.168.1.100这样的地址从该服务器获取资源,但我不想使用默认端口。现在我在/etc/httpd/conf/extra/httpd-vhosts.conf上有这样的配置
<VirtualHost 127.0.0.1:8324>
DocumentRoot "/home/dominik/Dropbox/dev/SOMEAPP/root"
<Directory /home/dominik/Dropbox/dev/SOMEAPP/root>
DirectoryIndex index.php
Options +Indexes +FollowSymLinks +MultiViews +Includes
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
</VirtualHost>
它在使用localhost或127.0.0.1的本地计算机上运行良好,但在端口8324上使用lan地址时,我得到默认的apache站点(就像我在端口80上发出请求)
curl 127.0.0.1:8324
返回来自SOMEAPP的HTML
curl 192.168.1.100:8324
返回默认的Apache索引
我的/ etc / hosts:
#
# /etc/hosts: static lookup table for host names
#
#<ip-address> <hostname.domain.org> <hostname>
127.0.0.1 localhost.localdomain localhost
#::1 localhost.localdomain localhost
127.0.0.2 xx.tu xx.tu
# 127.0.0.3 xxxxx.tu xxxxx.tu
127.0.0.4 xxxxxxxx.tu xxxxxxxx.tu
127.0.0.5 xxxxxxxxxxx.tu xxxxxxxxxxx.tu
127.0.0.6 xxxxx.tu xxxxx.tu
127.0.0.10 xxxxxxx xxxxxxxx
如果有人有想法,我会很高兴。感谢。
答案 0 :(得分:0)
无论如何,可能是超级用户的问题:
<VirtualHost 192.168.1.100:8324>
DocumentRoot "/home/dominik/Dropbox/dev/SOMEAPP/root"
<Directory /home/dominik/Dropbox/dev/SOMEAPP/root>
DirectoryIndex index.php
Options +Indexes +FollowSymLinks +MultiViews +Includes
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
</VirtualHost>
P.S。您可能希望修改httpd配置以避免在使用与任何已定义的虚拟主机不对应的Ip调用apache服务器时接收默认的apache索引