我的服务器上有两个虚拟主机,指向两个独立的rails应用程序。我想为每个应用程序创建两个单独的error.log文件。我试图在VirtualHost中设置ErrorLog指令。
<VirtualHost *:80>
ServerName demo2.questionscube.com
DocumentRoot /home/ubuntu/site-git/html_data
<Directory /home/ubuntu/site-git/html_data>
AllowOverride all
Options -MultiViews
ErrorLog ${APACHE_LOG_DIR}/site-error.log
</Directory>
但它出错了
ErrorLog not allowed here
我该怎么办?