Thin is an EventMachine-based web server written in Ruby for running Rack-based web apps.

learn more… | top users | synonyms

0
votes
2answers
10 views

Running EventMachine in new Thread after Rails is loaded using Thin

I have a Rails 3.2 app running on a Thin server and in application.rb I want to start EventMachine: # application.rb config.after_initialize do if ENV['EM'] EM.run do host = '0.0.0.0' ...
0
votes
1answer
11 views

Private_pub with SSL on AWS

I'm trying to run a separate secure pub/sub thin server using private_pub (which uses faye) and the instructions for serving over SSL: ...
0
votes
0answers
9 views

Asynchronous requests rails apache/phusionpassenger

I've implemented a controller method which makes a couple of requests to an third parry API, which is quite slow. Further I've utilized one of Thin's asynchronous features: # This informs thin that ...
2
votes
1answer
34 views

nginx reverse proxy setup resulting in strange access-control-allow-origin issue

I have a Rails application setup on Nginx/Passenger on Ubuntu. Recently I added Faye running on Thin which requires adding a reverse proxy server setup in my Nginx config. I managed to get this to ...
0
votes
0answers
21 views

Installing Thin on Windows fails

I cannot seem to install the thin gem on windows. A very similar question is asked here, however after tying all the answers it still doesn't work. Trace: C:/Ruby193/bin/ruby.exe extconf.rb checking ...
0
votes
2answers
14 views

Rails thin stop using pid

I have a Rails Thin server running on my iMac. Normally, I ctl-c to stop it. But, my terminal windows got closed and now I'm trying to stop Thin. I tried this: $ thin stop And got this: no PID ...
0
votes
1answer
28 views

Rails Nginx and Thin - why don't users get logged off when recycling?

I have a Rails app running on Ubuntu, Nginx, and Thin. When I stop Nginx and I stop the Thin servers, to a $ cap deploy and then restart Thin and Nginx, I would expect the user to have to log back ...
2
votes
2answers
51 views

Webrick or Thin to run (non-ruby) static websites

Since the ASP.NET Development server (VS2012) doesn't let us access URL over LAN (!!) and I don't have rights to configure IIS, I am trying to use WEBrick to launch a static website, to get LAN ...
1
vote
0answers
52 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 ...
0
votes
1answer
24 views

Remove Port Number from URL Thin Server 1.5 with Rails 3

I have a small Rails app currently being served (dev and production) by Thin server on port 3000, on a Debian box that also has apache2 running, serving PHP applications. I am not certain if this is ...
0
votes
1answer
52 views

Starting thin webserver in different ways

I use 'thin' webserver for rails application development. There are different ways to launch the thin server. Curious to know if there is any difference in launching the server in each of the ...
0
votes
1answer
36 views

Thin server behind apache, stops working when I update code

I've got a rails app on a thin server as a Windows service that is proxied through Apache server. The app works correctly until I try to upload a new version of the project. Then I get a 502 bad ...
0
votes
2answers
32 views

thin version mismatch with gemfile trying to install discourse

i am trying to install thin version 1.5.0 but as default when i install with gem install thin it install 1.5.1 then i get this error >> Writing PID to tmp/pids/thin.0.pid >> Using rack ...
0
votes
1answer
34 views

Heroku starts Thin but returns error from weBrick - Devise User Create Failure

When a new user registration is attempted I receive a server status code of 500 and no error is logged in Heroku. Here is the received response header: Connection keep-alive Content-Length 728 ...
1
vote
1answer
245 views

nginx 1.3.13 reverse proxy websockets

I have a Ruby on Rails 3.2 app with the websocket-rails gem, running in a thin webserver behind a nginx reverse proxy. Except for the nginx reverse proxy, everything works just fine. By removing the ...
-1
votes
1answer
95 views

How to Start a Thin Socket-Backed Cluster from Foreman [closed]

I'm trying to set up Discourse behind an Nginx proxy, served via Thin and started via Foreman. So I have a Procfile like so: web: thin start -p $PORT --socket tmp/sockets/thin.sock sidekiq: bundle ...
1
vote
1answer
41 views

Faye Server Error - undefined method - incoming

In faye.ru I have this code with faye_token: require 'faye' require File.expand_path('../config/initializers/faye_token.rb', __FILE__) Faye::WebSocket.load_adapter('thin') class ServerAuth def ...
2
votes
1answer
74 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 ...
0
votes
1answer
27 views

Rails - How do I configure thin's port and environment?

I've installed the thin gem for a rails app, but I'm unable to find a configuration file. Does installing the gem mean that I've installed the server? I just want to start Thin with a different port ...
0
votes
1answer
71 views

'rails server' starts thin twice, shuts both down. Cucumber still works

My rails application fails to start up in development mode. It appears to work in both production and test mode. Here is what I get when I run 'rails server': Thin web server (v1.5.1 codename ...
0
votes
1answer
49 views

How to stop Rails process from accepting new requests

Suppose I have a bunch of Rails processes running with Thin and in front in is Nginx. My application uses WebSockets. I would like to bring up new Thin instances with the Rails app upgraded. Tell my ...
0
votes
2answers
123 views

No data received when running “thin start”

I am using ruby 1.9.3 and rvm. I would like to run a thin server with --ssl option. I read in some answers that running "thin start --ssl" should do the trick. But in my development environment when I ...
4
votes
1answer
41 views

Since rails is usually run in its own process in a single threaded manner, do you need a conn pool?

From what I understand, it is common practice to run multiple processes via thin/phusion to support concurrency with Rails. Meaning that if you want to to mimick 30 threads, you would have to spawn ...
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
2answers
143 views

Why do I get 400 Bad Request header on a thin ruby website hosted on heroku

I look after www.lesscss.org. The source is here https://github.com/cloudhead/lesscss.org. This is a thin web application and runs on heroku. Accessing the website in a browser is fine. We have had ...
0
votes
1answer
58 views

Does Rack handle requests serially or concurrently?

Suppose I have a single process Rack application, if multiple requests arrive at the same time can the invocations of call(env) occur concurrently? Or is it guaranteed that call(env) will happen ...
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 ...
4
votes
1answer
228 views

Why thin behind nginx?

Deploying my first web app. I have been using thin, it's simple and easy. All I need is a config file. But a lot of people use nginx and place a couple thin instance behind that. Why? Why not just ...
1
vote
2answers
32 views

Rails 3 and Thin. Is there a way to execute a file after thin starts?

I currently have a rails 3.2 app that I am going to use thin as a web server for. I haven't found a way or know if what I am even attempting is possible which is why I came here to ask. What i'm ...
0
votes
0answers
336 views

How to get Rails 4 ActionController::Live streaming working with Thin and Ruby 2? And how do Thin and Puma scale with live streaming?

I get it working with Puma, but with Thin I don't get any stream output and I have to kill the server to stop it. I'm testing using tenderlove's initial example outputing the current time: ...
0
votes
1answer
70 views

Unexpected error while processing request: getaddrinfo: Temporary failure in name resolution

I have a Bitnami Rails stack using Ubuntu. I'm setting up Nginx with 5 Thin web application servers. When I try to access my Rails app via a browser, it looks like Nginx is sending the request onto ...
0
votes
1answer
28 views

Thin missing css

I'm debugging a Bitnami Rails implementation. I'd like to run Thin instead of Apache to see if my error still shows up. I go to the Rails app directory using SSH and run this command: $ thin -e ...
0
votes
2answers
228 views

Rails 4 App on Heroku, Works but Errors in Log

The app appears to be working but I am getting these errors in my log. This issue displays in the log for "/favicon.ico", "/assets/application-34baf7d108c7408a8c110454dc57e8f6.js", and ...
0
votes
1answer
42 views

Incompatible character encodings error when I send arabic number to my ruby rack server

I have a simple rack based ruby server that I run using Thin, it looks something like : #encoding: utf-8 class Auth def initialize(app) @app = app end def call(env) @request = ...
0
votes
0answers
49 views

How do I get clientId who published the message using faye

I have implemented faye for chatting services. But I want to know how can I find the clientId of that person who published the msg. I tried this: faye_server = Faye::RackAdapter.new(:mount => ...
1
vote
0answers
87 views

how to increase the number of Maximum Connections in Faye while using thin

When I start Faye using thin server, it says Thin web server (v1.3.1 codename Chromeo) Maximum connections set to 1024 Listening on 0.0.0.0:9292, CTRL+C to stop May i ...
0
votes
1answer
458 views

concurrent handling in thin, unicorn, puma, webrick

If I have the following action in a controller def give_a print a a = a+1 end What happens in each webserver when a request comes and when multiple requests are recieved? I know that webrick and ...
0
votes
2answers
79 views

How to turn off ruby thin server HTTP keep-alive?

Currently I am spawning HTTP server within my program programmatically. srv = Thin::Server.start('0.0.0.0', 3000, app) And I can't figure out where should I see to change keep-alive time setting. ...
0
votes
0answers
41 views

Rack + Thin, unlimited connections?

I have my own MVC environment running with Rack and Thin. By default, thin's connections are restricted to 1024. How to change the maximum amount of available connections? In best case, to unlimited ...
0
votes
0answers
73 views

RVM + Thin + Gitorious

The question I have is around using RVM for thin + gitorious. My setup is as follows: git user has rvm environment with all the goodies (gemsets) setup for gitorious, therefore I'm running rvm ...
0
votes
3answers
186 views

Choosing application server for API backend

With so many choices for the application server (Passenger, Thin, Unicorn, Mongrel, Puma and Rainbows!), I'm wondering what would be appropriate for the following scenario: Rails is used purely for ...
1
vote
1answer
239 views

Installing/Running Thin Webserver on Rails 3

Having an issue running the "Thin" web server. It looks like installation was successful but when I run "thin start" It appears as though Thin starts to initialize but then cannot find some resources ...
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, ...
0
votes
0answers
88 views

Adding rack-streaming-proxy to Rails as middleware causes zombie ruby processes with Thin?

I'm using Rails as API backend and Yeoman to develop the frontend. Rack-streaming-proxy gem is used to proxy non-API requests to Yeoman's server: config.middleware.use Rack::StreamingProxy do ...
0
votes
0answers
79 views

ReferenceError: Faye is not defined

I am trying to do a chatbox with ruby on rails, using faye. It runs well with WEBrick server, my boss asks me to implement it with apache server, i tried it, but have some errors(showed by firebug): ...
1
vote
0answers
71 views

Ruby Thin Client to listen for HTTP:Put, not sure where to start and what I need

I have a python script that sends a file as a attachment with data vars over HTTP::PUT (can also be POST) With POST I can grab it via PHP (on Apache) with one line of code (echo ...
0
votes
1answer
45 views

Pages stop responding with ruby on rails and mysql

I'm using Thin server + Ruby on Rails + Mysql, and I have several cronjobs that do heavy processing with the database every hour (scripts take about 1-2 minutes to finish). When the cronjobs run, ...
0
votes
1answer
465 views

Things to know when replacing WEBrick by Thin

I intend to replace WEBrick by Thin on a Rails 3.2 project because WEBrick handles malformed unescaped URIs badly (bad URI error). I know there are config hacks to make WEBrick handle unescaped URIs ...

1 2 3 4 5 9