嗨,我正在使用 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 服务器名 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
以及来自我的域名提供商的屏幕截图:
我究竟做错了什么?