我有一个在 CentOS 上使用 Apache/Passenger 运行的 Rails 应用程序,但我有一个小问题:我的 Rails 应用程序没有任何日志,我错过了什么?
这是我的 apache conf:
<VirtualHost *:80>
ServerAdmin info@domain.com
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
Run Code Online (Sandbox Code Playgroud)