Apache2 VirtualHost子域无法正常工作?

时间:2013-04-28 09:55:36

标签: apache2 subdomain

我有一个静态公共IP,我在其上托管我的网站(Ubuntu Server 12.04)。我需要设置一个子域但是它不起作用,甚至是www。不管用。我从GoDaddy购买了域名,并设置了正确的NS

我将配置文件保存在domain.me下的/etc/apache2/sites-available中,然后我做了a2ensite domain.me并重新加载并重新启动了apache2,但仍然没有运气。

这是我的配置文件

<VirtualHost *:80>
  ServerAdmin webmaster@domain.me
  ServerName  domain.me
  ServerAlias www.domain.me
  DocumentRoot /var/www
  LogLevel warn
  ErrorLog  /var/log/apache2/error.log
  CustomLog /var/log/apache2/access.log combined
</VirtualHost>

<VirtualHost *:80>
  ServerAdmin webmaster@domain.me
  ServerName  me.subdomain.me
  ServerAlias www.me.subdomain.me
  DocumentRoot /var/www/subdomain
</VirtualHost>

curl http://domain.me输出索引文件,curl http://www.domain.me输出curl: (6) Couldn't resolve host 'www.domain.me'和子域相同

1 个答案:

答案 0 :(得分:2)

我设法修复它,对于那些遇到同样问题的人,请确保设置A记录