apache - Passenger standalone rails app online but not working -
i need phusion passenger + ruby on rails. ruby 2.4.0, rails 4.2.1, passenger (passenger open-source standalone mode, btw)
i doing deployment tutorial , can run rvmsudo passenger start
. when go server page, "we're sorry, went wrong. issue has been logged investigation. please try again later."
this gemfile:
source 'https://rubygems.org' # bundle edge rails instead: gem 'rails', github: 'rails/rails' gem 'rails', '4.2.1' # use sqlite3 database active record gem 'sqlite3' # use scss stylesheets gem 'sass-rails', '~> 5.0' # use uglifier compressor javascript assets gem 'uglifier', '>= 1.3.0' # use coffeescript .coffee assets , views gem 'coffee-rails', '~> 4.1.0' # see https://github.com/rails/execjs#readme more supported runtimes # gem 'therubyracer', platforms: :ruby # use jquery javascript library gem 'jquery-rails' # turbolinks makes following links in web application faster. read more: https://github.com/rails/turbolinks gem 'turbolinks' # build json apis ease. read more: https://github.com/rails/jbuilder gem 'jbuilder', '~> 2.0' # bundle exec rake doc:rails generates api under doc/api. gem 'sdoc', '~> 0.4.0', group: :doc # use activemodel has_secure_password # gem 'bcrypt', '~> 3.1.7' # use passenger app server gem 'passenger', '>= 5.0.25', require: 'phusion_passenger/rack_handler' # use capistrano deployment # gem 'capistrano-rails', group: :development group :development, :test # access irb console on exception pages or using <%= console %> in views gem 'web-console', '~> 2.0' # spring speeds development keeping application running in background. read more: https://github.com/rails/spring gem 'spring' end
and passenger.80.log file
https://gist.github.com/ruimigueltrigo/d3ad88dc700eaa2cf0edbbc8ff4dea25
please me :\
Comments
Post a Comment