我有一个dyndns域名(比如example.dyndns.org)。目前,我可以通过不同的端口访问不同的wep应用程序
现在我在dyndns配置文件中激活了通配符子域,我希望我的apache能够提供
所以目前我有以下设置:
Listen 80
Listen 443
Listen 10001
Listen 10002
<VirtualHost *:10001>
ServerName ...
DocumentRoot ...
</VirtualHost>
<VirtualHost *:10002>
ServerName ...
DocumentRoot ...
...
</VirtualHost>
<VirtualHost *:80 *:443>
ServerName ...
DocumentRoot ...
...
</VirtualHost>
现在我要添加
<VirtualHost web1.example.dyndns.org:80>
ServerName ...
DocumentRoot ...
...
</VirtualHost>
但这不起作用。有什么建议吗?