我有一个在带有 Apache/Passenger 的 CentOS 上运行的 Rails 应用程序,但我遇到了一个小问题:我的 Rails 应用程序没有任何日志,我遗漏了什么?
这是我的 Apache 配置:
<VirtualHost *:80>
ServerAdmin [email protected]
ServerName domain.com
ServerAlias www.domain.com
Include /home/ftpanel/conf/alias/domain.com.alias
DocumentRoot /home/mgimmo/public_html/immo/public/
#Configuration PHP
FastCgiExternalServer /home/mgimmo/ftpanel-config/php5.fpm -socket /home/ftpanel/conf/sock/mgimmo.sock
Alias /ftpanel-config/ /home/mgimmo/ftpanel-config/
<Directory /home/mgimmo/public_html/immo/public/>
Options -Indexes FollowSymLinks -MultiViews
AllowOverride All
</Directory>
ServerSignature Off
答案1
应用程序日志照常位于应用程序根目录下的日志目录中。
就你的情况而言,完整路径是/home/mgimmo/public_html/immo/log/production.log
确保该文件可由 Web 服务器用户写入。