Tagged Questions
1
vote
0answers
51 views
Thin post request not working
I have a Thin server that runs a Sinatra app. In one file, I send a POST request, but it never arrives to its route. The same code works if I run it with bundle exec ruby myapp.rb but when it's run by ...
2
votes
1answer
73 views
How do you choose your HTTP server in Sinatra?
I am running a Sinatra application locally.
Ever since I installed Thin, my Sinatra app always uses it as the web server. However, I have been having performance issues with Thin serving the large ...
6
votes
1answer
205 views
Sinatra streaming with Puma?
I'm trying to leverage Server-Sent Events in my application. I am using Sinatra and the sinatra-sse gem. This gem wraps the Sinatra stream :keep_alive call.
When running my application on Thin, I ...
1
vote
1answer
78 views
Heroku: Not Found & Process Exited
I'm not sure how I can debug this. Running this ruby/sinatra/thin app locally I have no issues whatsoever. On Heroku however the app doesn't seem to load, says "Not Found.". I'm not sure how to make ...
0
votes
1answer
37 views
Strange “file not found” error in ruby sinatra web app
I'm creating a sinatra web app with a mongodb database. I use mongomapper to do the mappings. The web server is thin and I'm using slim as a templating language.
file ./config/config.ru:
$_DB_SERVER ...
0
votes
1answer
61 views
Sinatra image displaying issue
Here is parts of my view code (haml):
%link{rel:'stylesheet', href:'/screen.css', type:'text/css', media:'screen'}
%img{scr:'/tile.jpg'}
The ./public folder contains files
screen.css and tile.jpg
...
0
votes
1answer
44 views
Log file does not get written until server shutdown / does not write with Logger
I am developing a simple web service with Sinatra/Thin on Windows
In my app, I have the following to enable logging to a file:
Dir.mkdir('log') unless File.exists?('log')
use Rack::CommonLogger, ...
2
votes
1answer
195 views
Server Sent Event connection not staying open with Apache/Thin/Sinatra
I'm trying to setup basic server side event ability using Apache/Thin/Sinatra. Everything works as exepcted when I run the Thin server directly. When I run the Thin server through Apache using the ...
0
votes
1answer
108 views
Sinatra - downstream app not set
I'm getting this strange error: downstream app not set
However my app is responding and working well.
I've checked - and I've not found any requests to undefined routes.
(Maybe there is some tools ...
0
votes
1answer
306 views
Thin + EventMachine fails to start
While loading a Thin webserver for a sinatra app I keep getting
Unable to load the EventMachine C extension; To use the pure-ruby reactor, require ...
0
votes
0answers
30 views
Serving apt repository with sinatra
I am trying to serve packages from an apt repository. I believe I have the repository setup correctly because I had done that part first and had it working correctly, however I was using apache2 ...
2
votes
1answer
190 views
How to deploy sinatra application just with thin?
I've written a small application with Sinatra.
Now, in the root directory of this project, I run "thin start", and it works. This is just a small project and would only run in my local machine. So I ...
1
vote
2answers
53 views
run thin outside of shell
I am using thin to run my Sinatra app but right now, when I close the shell, the server stops. Is it possible to run it as a process in the background and also see/minitor the logs like I do in shell?
...
0
votes
1answer
113 views
Thin error message
When I run ruby filename.rb, the thin webserver startsup but when I try to view the (Sinatra) application on localhost:4567 I'm getting this error message. Googling it revealed nothing. Does ...
2
votes
2answers
673 views
How to make Thin run on a different port?
I've a very basic test app. When I execute this command the server ignores the port I specify and runs Thin on port 4567. Why is the port I specify ignored?
$ruby xxx.rb start -p 8000
== ...
0
votes
1answer
457 views
fastest hacks for deploying a Sinatra app under nginx and thin (linux ofcourse)
I am trying to figure out best practices of deploying a sinatra app under nginx and thin! any guidelines or sourcecode will be appreciated.
I don't want to use passenger nor Apache.. as my hunch is ...
0
votes
1answer
144 views
Mapping Thin - Sinatra app with apache httpd
Recently I developed a Sinatra app that running under Thin.
On my local and test servers it runs ok, but when I add it to my production env, all resources from public dir is inaccessible.
I'm not a ...
2
votes
1answer
174 views
Thin server logs the same request several times
I'm using thin web server, to serve a Ruby/Sinatra application. The thing that got my attention is that when I run:
RACK_ENV=production rackup
Every request is logged like 5 times, and with ...
0
votes
1answer
121 views
Will Apache + Thin + SSE work?
We use Apache as a proxy in front of all of our applications. Will using Apache in front of Thin as a proxy server work? I am hoping to do a chat type of application like the one delivered with ...
2
votes
1answer
497 views
Slow streaming with Thin or no streaming at all
I wrote a little script to stream a file byte-per-byte with Sinatra and Thin:
#!/usr/bin/env ruby
require 'sinatra'
require "sinatra/streaming"
get '/' do
stream do |out|
...
4
votes
1answer
288 views
Thin::Server#daemonize exits immediately
I trying to make an executable, which starts a Sinatra application via Thin as a daemon.
I am using this code to invoke Thin with the Sinatra app:
#!/usr/bin/env ruby
require 'thin'
require 'app.rb'
...
4
votes
2answers
415 views
Enable SSL in Sinatra with Thin
I'm looking for a simple way to enable SSL in a standalone Sinatra application running via Thin without having to pass the --ssl, --ssl-key-file and --ssl-cert-file parameters in via the Thin command ...
0
votes
1answer
300 views
Sinatra /w Thin: Logging?
I recently installed Thin for a Sinatra app I'm developing. However, it does not seem to be logging/outputing request, response and error messages a la WEBrick. Is there any way to turn these on, and ...
1
vote
2answers
92 views
Loaded async_sinatra gem, but my program is not finding a method in it
The gem in question is async_sinatra. I have it installed, and ran a bundle install also with it in the Gemfile, but I keep getting the same error:
NoMethodError: undefined method 'aget' for ...
4
votes
1answer
392 views
Testing HTTPS on Sinatra locally
I need to test how some elements on my page behave when I access it over HTTPS - I was wondering how I could test this sinatra app locally with HTTPS. I apologize if my question doesn't even make ...
0
votes
1answer
240 views
How do I get my ruby source in the load path when invoking with thin?
I'm playing around with a combination of Thin, Sinatra and Bundler. I'm trying to understand how I get Thin to include the path to my source code in the load path? I have looked for introductory ...
0
votes
1answer
217 views
Sinatra Padrino simple App does not run
I have written a few plain Sinatra apps using data mapper.
I wanted to try Padrino.
Went to padrinorb.com
On the front page there is
gem install padrino
padrino g project myapp -d datamapper -b
...
1
vote
1answer
290 views
changing to jruby, get RuntimeError: Server handler (thin) not found
My app works fine in MRI 1.9.2-p290 and 1.9.3-p125, but when I change to jruby-1.7.0-preview1 I get the error discribed. Here's the full error:
RuntimeError: Server handler (thin) not found.
...
0
votes
2answers
96 views
How to detect, that server is started in Sinatra/Thin
I have code like:
Thread.new do
builder = Rack::Builder.new do
map('/'){ run Server }
end
Rack::Handler::Thin.run builder, :Port => 8585
end
#how do i detect, that Server is running here ...
0
votes
1answer
402 views
Sinatra on Thin: How to hide or change HTTP 'Server' response header
What is the cleanest way to do this? Some Rack middleware? I tried to modify env['SERVER_SOFTWARE'] but I still get in response:
Server: thin 1.3.1 codename Triple Espresso
How to change the value ...
2
votes
1answer
660 views
Thin & Sinatra not taking port
I'm having problems settig up my application using Thin and Sinatra. I have created a development-config.ru file that contains the following settings:
# This is a rack configuration file to fire up ...
2
votes
2answers
767 views
Can Heroku handle more than one connection simultaneously (Sinatra on Thin)?
I'm reading the Heroku Routing article and confused by the following:
One Connection at a Time
The heroku.com stack only supports single threaded requests. Even if your application were to fork and ...
2
votes
1answer
253 views
Error with Rack fetching session-based cookie
My web app is using Rack 1.4.0, Sinatra v1.2.6, Thin v1.2.11, Ruby v1.9.2p180
Navigating to a page I get this error in the log:
TypeError - can't convert nil into String:
...
0
votes
0answers
292 views
Override logging in thin
I am starting thin in a cluster with 4 thin instances(with Sinatra).
It seems that thin creates 4 different log files, one for each
instance. I want to override this logging behavior. My ...
1
vote
1answer
346 views
Manage a Thin server through a Ruby script
I have a project where I have a sinatra app and I want to launch it with thin through a admin ruby script file. I want to be able to start, stop and restart it, also being able to daemonize it if ...
2
votes
1answer
563 views
How to silently start Sinatra + Thin?
I have a Sinatra::Base webservice which I want to start from a command line Ruby program, so I have this:
# command line program file
require 'mymodule/server'
puts "Running on 0.0.0.0:4567, ...
0
votes
1answer
169 views
deploying multiple servers that communicate with each other, best practices
Say I have:
a Rails app that I want to deploy to Server A
a Sinatra app that I want to deploy to Server B
the Rails app needs to communicate with the Sinatra app
I can set up a config file that ...
3
votes
1answer
228 views
Do something when user aborts connection (Sinatra + Thin)
I'm writing an app that sometimes requires very long-running DB requests. I'd like to execute some code if the client reloads or closes the page to do things with the DB requests.
I was hoping that ...
1
vote
2answers
480 views
“uncaught throw :async” when using async_sinatra with Rails EventMachine and Thin
I'm trying to setup my environment for having both rails, EventMachine and async_sinatra play together and I guess I have something setup wrong because I get an error "uncaught throw :async".
This is ...
1
vote
1answer
311 views
Using Sinatra for Building Web Proxy, Handling I/O Blocking? (+ Strange Heroku request concurrency issue)
I want to write something similar to an HTTP web proxy. I am currently exploring using Ruby with Sinatra for this.
One of my main worries with this is that the HTTP request I make to another server ...
1
vote
2answers
244 views
How do I specify the version of Thin web server I want to use for my Ruby app? - Sinatra
I have the following versions installed:
thin (1.2.11, 1.2.7, 1.2.2)
But I always want to use version 1.2.2
How do I specify?
Am using Sinatra.
This is how I run my site:
ruby ...
4
votes
1answer
2k views
Thin and sinatra - how to stop/restart? No thin.pid
I'm using thin as the server for my Sinatra app. It is started thusly:
thin -C config/environment.yml -R config/config.ru start
Where environment.yml has thin stuff and config.ru has general stuff ...
5
votes
2answers
5k views
Rackup to use Thin instead of WEBrick
New to Sinatra, just development server up and running but rackup is using WEBrick instead of Thin, Thin gem is already installed, this has to be a simple configuration tweak but I don't know where. ...
2
votes
1answer
302 views
Concurrent writing to log file Sinatra, Rack, Thin
We have written an Sinatra application that uses Thin as its web server and rack as the middleware between the two. I would like to know if Rack is smart enough to allow concurrent writing to the log ...
4
votes
2answers
1k views
High load RESTful API in Ruby (sync/async implementation)
I'm struggling with implementing a RESTful API that should return JSON response and should sustain very high load.
The highest load will be generated by 'read' part of the API and very little load ...
2
votes
2answers
1k views
Sinatra Sessions Not Persisting as Expected
I'm trying to use redirects and sessions in Sinatra to pass some data around the site. Here's a simplified example, using PrettyPrint for debugging:
require 'pp'
require 'rubygems'
require 'sinatra'
...
0
votes
1answer
206 views
Possible to use EM calls in a Thin webapp?
Is it possible to use EventMachine calls inside Thin without extra initialization?
Currently, I have a Sinatra app run by Thin (which is running as a service). When I try to use ...
3
votes
2answers
633 views
How do I log asynchronous thin+sinatra+rack requests?
I'm writing my first Sinatra-based web app as a frontend to another TCP-based service, using EventMachine and async_sinatra to process incoming HTTP requests asynchronously. When I'm testing my app, ...
5
votes
2answers
2k views
How to fix Sinatra redirecting https to http under nginx
I have a Sinatra app running in nginx (using thin as a back-proxy) and I'm using redirect '/<path>' statements in Sinatra. However, when I access the site under https, those redirects send me to ...
2
votes
2answers
536 views
Sinatra session not preserved with Rack::FiberPool
The session is not preserved between requests, though I can't see what I'm doing wrong. Code!
require 'sinatra'
require 'rack/fiber_pool'
class SessionTest < Sinatra::Base
use Rack::FiberPool
...


