Centos 上で Apache 2.4 を設定して、2 つの仮想ホストから index.html を提供しましたが、URL のポートに関係なく、Apache は常に stepan.wudangtc.cz から index.html を提供します。おそらく、私の理解が間違っているか、設定が間違っているのでしょう。仮想ホスト pavel.wudangtc.cz からも index.html を提供するように Apache を設定する方法をアドバイスしてください。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>