我正在为学校做一个项目,我必须在网络服务器上托管2个页面。我选择使用Apache2进行VirtualHost,但是当它一直向我显示“It works”页面时。该网页位于here。
我们正在使用DNS服务器,但问题似乎不是来自这个问题。
这是 .conf 文件之一:
<VirtualHost *:80>
ServerAdmin jongen.philemon@wt5.ephec-ti.be
ServerName wt5.ephec-ti.be
ServerAlias www.wt5.ephec-ti.be
DocumentRoot /var/www/monsite
<Directory /><br>
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/monsite>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
</VirtualHost>
我也像这样更改了 apache2.conf :
<VirtualHost *:80>
ServerAdmin jongen.philemon@wt5.ephec-ti.be
DocumentRoot /var/www/site
<Directory /var/www/site/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order deny,allow
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
您还可以查看GitHub上的wiki以查看我遵循的所有步骤。
感谢的
答案 0 :(得分:0)
我必须通过使用Dockerfile重新进行修复。如果你遇到同样的问题,我会在我的github上提升文件和维基!