apache2 2个网站。得到“索引”

时间:2018-09-11 16:31:47

标签: server web hosting

所以我试图在运行raspbian的raspberry pi 3 b +上托管2个网站。我已遵循本教程https://www.digitalocean.com/community/tutorials/how-to-set-up-apache-virtual-hosts-on-ubuntu-14-04-lts

但是它无法正常工作。当我去任何一个领域 http://georgesshed.ddns.net 要么 sweetmemes.ddns.net我得到这个:

webpage

我尝试使用这些文件添加虚拟主机:

<VirtualHost *:10>
    ServerAdmin georgegohl888@gmail.com
    ServerName spicymemes.ddns.net
    DocumentRoot /var/www/html/spicymemes.ddns.net/index.html
    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined

<VirtualHost *:80>
    ServerAdmin georgegohl888@gmail.com
    ServerName georgesshed.ddns.net
    DocumentRoot /var/www/html/georgesshed.ddns.net/index.html
    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

有什么想法吗?非常感谢

0 个答案:

没有答案