我在 /var/www/statgenerique5 有一个网站。我已将以下内容添加到 /etc/apache2/sites-available/statgen5.conf
<VirtualHost *:80>
ServerName statgen5.local
ServerAdmin webmaster@localhost
DocumentRoot /var/www/statgenerique5
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
我重新启动并重新加载 Apache 服务,但无法 ping 或访问 statgen5.local。
我还使用我的 ip 和 statgen5.local 配置 /etc/hosts 文件,但它不起作用。
我使用的是 Debian 8.6
怎么了 ?
答案1
配置必须存在/符号链接在/etc/apache2/sites-enabled
目录中。
通常你会
cd /etc/apache2/sites-enabled
ln -s ../sites-available/statgen5.conf
并重新启动服务器。