部署 怎么确定是否在生产模式下???

tiseheaini · September 03, 2012 · Last by tiseheaini replied at September 04, 2012 · 2042 hits

我的 Apache httpd.conf

ServerName localhost
LoadModule passenger_module /home/tiny/.rvm/gems/ruby-1.9.3-p194/gems/passenger-
PassengerRoot /home/tiny/.rvm/gems/ruby-1.9.3-p194/gems/passenger-3.0.17
PassengerRuby /home/tiny/.rvm/wrappers/ruby-1.9.3-p194/ruby

   <VirtualHost *:80>
      ServerName www.yourhost.com
      # !!! Be sure to point DocumentRoot to 'public'!
      DocumentRoot /home/tiny/tiny/public/
      <Directory /home/tiny/tiny/public/>
         # This relaxes Apache security settings.
         AllowOverride all
         # MultiViews must be turned off.
         Options -MultiViews
      </Directory>
   </VirtualHost>

部署成功了吗?,这是不是就在生产模式下了???

大家遇到过这种问题吗???

You need to Sign in before reply, if you don't have an account, please Sign up first.