无法将我的网站提供给互联网

时间:2012-11-22 05:04:32

标签: apache apache2

您好我使用ubuntu作为我的虚拟主机的服务器操作系统,但是我有问题将我的域名重定向到我的服务器这是我的/ etc / hosts文件和/ etc / apache2 / sites-available / mysite文件。

主持文件:

127.0.0.1 www.lowkey.se

以下行适用于支持IPv6的主机

:: 1 ip6-localhost ip6-loopback fe00 :: 0 ip6-localnet ff00 :: 0 ip6-mcastprefix ff02 :: 1 ip6-allnodes ff02 :: 2 ip6-allrouters

位点可用/文件:

    ServerAdmin webmaster @ localhost     ServerName www.lowkey.se

DocumentRoot /var/www/doost/
<Directory />
    Options FollowSymLinks
    AllowOverride None
</Directory>
<Directory /var/www/doost/>
    Options Indexes FollowSymLinks MultiViews
    AllowOverride None
    Order allow,deny
    allow from all
</Directory>

ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
    AllowOverride None
    Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
    Order allow,deny
    Allow from all
</Directory>

ErrorLog ${APACHE_LOG_DIR}/error.log

# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn

CustomLog ${APACHE_LOG_DIR}/access.log combined

来自我的域名提供商的截图:

enter image description here

我做错了什么?

1 个答案:

答案 0 :(得分:1)

请在Apache配置中注释以下三行,然后重新启动Apache:

DocumentRoot /var/www/doost/
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined

如需评论,请按以下方式更换:

#DocumentRoot /var/www/doost/
#ErrorLog ${APACHE_LOG_DIR}/error.log
#CustomLog ${APACHE_LOG_DIR}/access.log combined