Apache中的DynDns通配符子域

时间:2016-01-27 15:23:15

标签: apache subdomain dyndns

我有一个dyndns域名(比如example.dyndns.org)。目前,我可以通过不同的端口访问不同的wep应用程序

  • example.dyndns.org:10001获取WebApp1
  • example.dyndns.org:10002获取WebApp2
  • example.dyndns.org获取我的网站

现在我在dyndns配置文件中激活了通配符子域,我希望我的apache能够提供

  • Web1.1在web1.example.dyndns.org和example.dyndns.org:10001
  • Web2.2在web2.example.dyndns.org和example.dyndns.org:10002
  • 网站example.dyndns.org

所以目前我有以下设置:

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>

但这不起作用。有什么建议吗?

0 个答案:

没有答案