/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サービスを再起動して再ロードしましたが、statgen5.localにpingまたはアクセスできません。
私は私のIPとstatgen5.localを使って/ etc / hostsファイルを設定しましたが、うまくいきません。
Debian 8.6 を使用しています
何が問題なの?
答え1
構成は/etc/apache2/sites-enabled
ディレクトリに/symlinkとして存在する必要があります。
通常あなたはそうでしょう
cd /etc/apache2/sites-enabled
ln -s ../sites-available/statgen5.conf
そしてサーバーを再起動してください。