Tagged Questions
1
vote
0answers
46 views
Error in post2/implementation.cpp: 1156 with passenger 4.0.2 and Ruby 2.0.0
I had deployed a Sinatra App using passenger gem version 3.0.19 on Ruby 1.9.2-p290 and it was working fine. When I upgraded my Ruby to 2.0.0 and passenger to 4.0.2, I am getting this line in ...
0
votes
2answers
59 views
Deploying Sinatra app to Passenger 4.0.0.rc6 by vlad. On production server it keeps requiring :development group in Gemfile
On production server Passenger(4.0.0.rc6 + nginx) keeps requiring the :development group in Gemfile. After manually commenting them out from Gemfile the app runs fine. Otherwise, Passenger would fail ...
0
votes
0answers
260 views
“No such file or directory - config.ru” with Passenger + Sinatra + Apache
I can't seem to pinpoint where the issue is, but I can't seem to get my app deployed to a sub URI. My gut says it's between my vhost config and my symlink, but this is my first time working with ...
3
votes
2answers
848 views
Passenger: internal server error
I installed Apache, Passenger and Sinatra and deployed an app. It gives error when trying to access:
An error occurred while starting up the preloader: it did not write a startup response in time.
...
1
vote
0answers
61 views
Unicode characters in HAML/Sinatra/Passenger errors
If I put this into my HAML,
:ruby
foo = "2".asdf
%p ss
I get, as expected, this error from Sinatra:
NoMethodError at /
undefined method `asdf' for "2":String
But when I have a UNICODE ...
0
votes
2answers
36 views
Restarting only a portion of a rack/Sinatra app
The great thing about PHP is that if you have something like
clothes.com, clothes.com/men.php, clothes.com/women.php
Then if you only edit the men's page, only that particular "app" will be ...
4
votes
1answer
97 views
Sinatra: Hot Code Pushes In Production?
When I push new code from my Sinatra application to my production server, I am currently triggering a restart of passenger by touching tmp/restart.txt, which loads the new changes. The problem is ...
1
vote
1answer
174 views
Sinatra + Passenger + RVM on DreamHost fail to start
I'm having trouble running sinatra server.
I installed RVM and wrote a simple sinatra app, sources below. I created public + tmp + tmp/restart.txt folders as well. I followed some answers ...
2
votes
1answer
560 views
sinatra config.ru: what is the configure block for?
using sinatra with apache and phusion-passenger with "classic" style:
# config.ru
require 'sinatra'
configure do
....
end
require './app'
run Sinatra::Application
Now, lets say I want to ...
0
votes
0answers
80 views
Content-Length for Sinatra file steaming
I am trying to set the Content-Length header before I stream a file out to the client. I am setting it with:
response.headers['Content-Length'] = "12341234"
and then i do something like:
steam do ...
0
votes
0answers
141 views
Ruby Sinatra app on production machine - Passenger throwing error
I have a Ruby Sinatra app that works perfectly locally. I have transferred it to the production machine and am getting the following (unhelpful) error. Can anyone point me in the right direction, ...
1
vote
1answer
78 views
Handling chunked request in Sinatra
In Sinatra I have a route setup similar to the following:
put '/test' do
begin
logger.info 'In put begin block'
write_to_file(request.body.read)
[200, '']
rescue RuntimeError => ...
1
vote
0answers
122 views
Simple sinatra app with sqlite3 works when using WEBrick but not when using apache and passenger
I'm getting a "500 Internal Server Error" message when my app tries to write to my sqlite3 database.
Everything works fine when I'm using WEBbrick, but I get the above error when I'm using Apache and ...
0
votes
0answers
20 views
Passenger + Rack fail when get some action
I'm trying to deploy app based on sinatra framework with passenger.
My VirtualHost is
<VirtualHost *:9393>
ServerName sample
DocumentRoot /var/www/html/sample/public
RackBaseURI /
...
1
vote
1answer
51 views
getting rack mapped directory inside app
Say I have a config.ru like:
map '/foo' do
run MyApp
end
and a Sinatra app like:
class MyApp < Sinatra::Base
use Rack::Session::File, key: 'rack.session', domain: 'my.domain.com', path: ...
0
votes
0answers
67 views
gem 'dm-core' not found
I'm trying to use DataMapper in my Ruby/Sinatra application. When Passenger restarted the server, however, I got a lovely error page telling me that I got a LoadError when trying to require 'dm-core'.
...
2
votes
1answer
459 views
Passenger/nginx not loading Sinatra app
I'm trying to run a few Sinatra apps under sub-uri's, but it seems that Passenger isn't picking them up as Rack applications.
From the nginx-error log: 403 error, directory index of ...
1
vote
1answer
238 views
Ruby, Sinatra and Passenger config on Apache
This is potentially a simple question but I wanted to ask to avoid running around in circles.
I have installed ruby 1.9.2 on Ubuntu and have set up passenger to run with Apache 2.2 on the machine. I ...
0
votes
2answers
202 views
My haml view is unable to find the css file in my public/css folder when deployed, but manages to find it on localhost
My application is running on Sinatra and deployed on my Apache web server using Passenger. My directory structure is as follows:
approot
` public
` css
- bootstrap.css
` uploads
- ...
0
votes
1answer
157 views
Parameter from the path includes query string in Sinatra. Is that correct?
I am running a Sinatra app under Passenger. I have an action which looks roughly like this:
get '/pic/:id' do
# do stuff ...
canonical_image_url = "/img/%d.jpg" % params[:id]
end
However I see ...
2
votes
2answers
908 views
Having multiple locations with nginx, passenger, sinatra
I have a server section that looks like:
server {
listen 80;
server_name arch;
root /data/apps/production/fentonGem2/current/public;
passenger_enabled on;
}
and this works ...
0
votes
0answers
298 views
Sinatra app returns nothing with Ruby 1.9.3 (works fine with Ruby 1.8.7)
I have a Sinatra utility app that runs on multiple servers and we use it for some internal tasks. It does some command line execution and spits out the results to a view.
It works fine on our ...
1
vote
1answer
188 views
How to deploy/run Sinatra app on Mac via Passenger?
We have a git server running on Gitosis hosting our projects. We have created an interface to display info about our repos, and now need to deploy it to the Mac running gitosis. The files for the ...
2
votes
1answer
421 views
How to deploy multiple Rack/Sinatra apps with Passenger (on Apache) with HTTP Basic Authentication?
The issue here is with multiple instances of the same Sinatra (Rack) app deployed on Passenger+Apache on different sub URIs with HTTP basic auth to keep away unwanted access:
I have 4 instances of a ...
2
votes
2answers
159 views
Rack: Bundler::GemNotFound errors during `bundle install --deployment`
So I have a few machines in production that are running a Sinatra app on top of Rack. Usually everything is hunky dory until Puppet - which we're using to sync changes to our servers - notices that ...
1
vote
1answer
440 views
How do I deploy a Sinatra app with Nginx and Passenger?
I'm on a Dreamhost virtual private server. I have never written a Sinatra app, or any other Rack app before. I'm just trying to get a Hello World app to run but I keep getting the Passenger error page ...
1
vote
2answers
580 views
Right place for Sequel DB connection while working on Phusion Passenger with nginx
I have test app written on ruby, using Sinatra+Sequel.
config.ru:
require './main'
run Sinatra::Application
Example code:
require 'sinatra'
require 'haml'
require 'sequel'
...
0
votes
1answer
406 views
What am i doing wrong with passenger/sinatra/apache…?
I've never deployed an app before and now i cant get it to show up on my domain.com
my server is liquidweb, and it has apache2
I did gem install passenger
I ran passenger-install-apache2-module and ...
3
votes
1answer
192 views
How do I run my first ruby app on my server now that its done?
So I've successfully finished my first ruby app :)
When i programmed it locally, i have to use all the following commands below separately in terminal to get it up and running. The problem is when I ...
0
votes
0answers
169 views
Passenger+nginx problems with sinatra
I have set up passenger+nginx to run on sinatra and my code basically has monkey patched classes in various files ie.
class MyApplication < Sinatra:Application
end
on thin I run as ...
1
vote
0answers
274 views
Installing geminabox Gem with mod_passenger - 'Service Temporarily Unavailable'
i'm trying to install the geminabox application on my server using mod_passenger. But for some reason it's always giving me a 'Service Temporarily Unavailable' and i don't know where to look. I've ...
4
votes
4answers
516 views
Is a new instance of sinatra started on every request?
When a new http request comes in, will a new instance of sinatra be started, e.g. has sinatra to be initialized, or is just the method of a previous instance (the corresponding get/post method/route) ...
1
vote
1answer
450 views
Sinatra App 404 Error In Production Mode
My productions setup's as follows:
Ubuntu 10.10
rails 3.1.1
Passenger 3.0.9
Sinatra 1.3.1
Apache 2.2.17
I have tested my app on my development machine without issue but when I deploy to my ...
0
votes
1answer
318 views
Rack (Sinatra) App pointing '/' to parent's root when deployed in subfolder
I have a bunch of small sinatra apps, and now I have to publish them under SSL HTTP as well.
I have https://secure.mydomain.com/ and I want to publish those apps in subdirectories:
/app1
/app2
I ...
0
votes
2answers
265 views
Thread Behavior in Sinatra and Phusion Passenger
I have a simple Sinatra app running on top of Apache via Phusion Passenger.
When the app starts, I initiate a Ruby thread that does a heavy computation once a minute, leaving the result in a global ...
2
votes
1answer
323 views
Make Nginx use the correct passenger gem
I am trying to setup an nginx + sinatra + ubuntu 10.04 + passenger + rvm stack. I followed the directions here: ...
0
votes
1answer
268 views
Sinatra Gem Won't Install
I am running Ubuntu 10.04 on a linode trying to get sinatra, passenger, nginx, and rvm to all play nice with Ruby 1.9.2. I'm running into an issue with gems though:
~/.rvm/gems/ruby-1.9.2-p290/gems$ ...
0
votes
1answer
2k views
Sinatra Logging & Stack Traces
Currently, I'm running an app I'm developing on Apache/Passenger. I was able to view stacktraces when I was using shotgun.
I'm trying to set up logging with Sinatra and really having a hell of a ...
1
vote
2answers
1k views
Why am I getting 404 errors with Sinatra with Passenger under nginx?
I have a Sinatra-based app that runs fine locally.
I moved it to a nginx-based server with Passenger and now all my links to files in my apps /public are returning 404 errors. The primary app runs, ...
0
votes
1answer
1k views
Setting up Sinatra with RVM & Apache (passenger)
Are there any instructions anywhere on how to set up Sinatra with RVM and Apache (passenger)?
(Normal ruby is 1.8.7; RVM should turn it into 1.9.2 on the apache server.)
4
votes
1answer
830 views
Sinatra app on Passenger can't find Rack (using RVM)
I've been fighting with a staging server for this Sinatra app for two days. I'm getting pretty frustrated. The latest pothole is a Ruby error handed up by Passenger:
no such file to load -- rack
...
0
votes
2answers
349 views
Ho do I prevent Passenger Standalone/nginx from removing double slashes?
I am trying to run a Sinatra app with Passenger Standalone. The app takes a URL in the URL like this:
get "/url/*" do |url|
"URL: #{url}"
end
Apparently nginx reduces consecutive slashes to only ...
2
votes
1answer
954 views
Fix permissions error with Phusion Passenger + Sinatra +Nginx on OS X
I'm trying to get Phusion Passenger working with Sinatra on Nginx and I am running into the same error as in this previous question. Sinatra on Nginx configuration - what's wrong?
Im sure the fix is ...
1
vote
3answers
337 views
Sinatra application running on Dreamhost suddenly not working
My Sinatra application was running fine on Dreamhost until a few days ago (I'm not sure precisely when it went bad). Now when I visit my app I get this error:
can't activate rack (~> 1.1, runtime) ...
0
votes
1answer
424 views
NoMethodError when deploying Sinatra Rack application with Passenger
I'm getting this error when I deploy my Sinatra app with Passenger and Apache:
Exception NoMethodError in application (undefined method `call' for nil:NilClass)
I can start the app with
ruby ...
3
votes
2answers
1k views
Ruby app only works when Passenger is “disabled”
I have deployed a Sinatra application on an Ubuntu server using Apache and Passenger. Through some trial and error, I realize the app only works when the passenger module is disabled.
$ a2dismod ...
8
votes
2answers
2k views
No Such File To Load Passenger and Sinatra
I've recently updated to Ruby 1.9.2 (RVM), Sinatra 1.1 and Passenger 3.0.0. I have a simple application composed of:
# config.ru
require 'rubygems'
require 'sinatra'
require 'app.rb'
run ...
0
votes
1answer
232 views
Problem With Routes After Deploying Sinatra Application
I wrote a simple Sinatra application with two "routes": "/show" and "/listshows". When I run the application on top of Webrick, everything works beautifully for both the static and non-static ...
3
votes
1answer
617 views
How can I selectively clear the cache for Sinatra + Nginx + Phusion Passenger?
I have a modular Sinatra app running on nginx with Phusion Passenger. When I alter my app (and in particular, some YAML files which are used to generate pages), I'd like to be able to clear only the ...
6
votes
1answer
3k views
Passenger Rack app 'cannot infer basepath'
I have a simple config.ru file for my Sinatra app.
require 'sinatra'
require 'app'
run Sinatra::Application
However, Passenger is failing with the error no such file to load -- app. I've tried ...