我在 Centos 上设置了 apache 2.4,以便从两个虚拟主机提供 index.html,但无论 url 中的端口是什么,apache 总是从 stepan.wudangtc.cz 提供 index.html。我可能理解得不好,或者配置错误。请告诉我如何配置 apache 以便从虚拟主机 pavel.wudangtc.cz 提供 index.html。Apache 同时监听端口 80 和 8080。
<VirtualHost *:80>
ServerName pavel.wudangTC.cz
ServerAlias wudangTC.cz
DocumentRoot /aplikace/httpd/docroots/pavel
<Directory /aplikace/httpd/docroots/pavel>
Require all granted
</Directory>
</VirtualHost>
<VirtualHost *:8080>
ServerName stepan.wudangTC.cz
ServerAlias www.wudangTC.cz
DocumentRoot /aplikace/httpd/docroots/stepan
<Directory /aplikace/httpd/docroots/stepan>
Require all granted
</Directory>
</VirtualHost>