我今天到处寻找正确设置RAILS_ENV for Passenger的方法。我现在想要使用测试环境,因为该站点在我的服务器上,但我不希望它是生产的,因为我遇到了数据库问题。
我被引导到this part of the documentation,但这对我没有任何意义。我在我的Apache .conf文件中有PassengerAppEnv RAILS_ENV = 'test'
,并且 - 如预期的那样 - 没有用。
我还在我的Rails网站的RAILS_ENV = 'test'
中设置了config/environment.rb
,但这也不起作用。
谢谢!
答案 0 :(得分:6)
你很近,但不太正确。以下是设置方法:
<Directory /path/to/app/public>
Allow from all
Options -Multiviews
# ^ for Apache 2.4+
Require all granted
RailsEnv development # < place desired environment here
</Directory>
基本上Passenger将在配置文件中看到该行,然后为您设置。它使用更多的Apache样式语法:
Name [space] <value>
因此,您根本不需要所有引号或任何Ruby样式语法。