thin Questions
2
Solved
I used the following instructions to install and configure the Thin server as a service on Ubuntu 10.04.4 with Rails 3.2.3:
http://articles.slicehost.com/2008/5/6/ubuntu-hardy-thin-web-server-for-...
Gstring asked 30/4, 2012 at 20:19
1
Solved
I have a rails app that uses PDFKit to render pdf versions of webpages. I use Thin as a development server.
The problem is that when i'm in development mode. When I start my server with "bundle ex...
1
Solved
I am trying to use the folling command to restart thin.
thin restart -c config/thin.yml
Here's the content of thin.yml:
rackup: /root/SEHabitat/config.ru
pid: /tmp/pids/thin.pid
wait: 30
timeou...
Goulette asked 7/3, 2012 at 13:49
4
Solved
I run the Thin webserver for basically every app in my dev/test environments. When I used Mongrel with Rails 2.x, all I had to type was script/server to get it to run the webserver I choose. But wi...
Deltoro asked 31/1, 2011 at 16:33
1
Solved
The only difference I've noted is that rails server starts the server on port 3000, while rackup starts the server on port 9292.
Are there any other differences?
Are there use cases for one inste...
Glomerulus asked 21/2, 2012 at 18:51
2
I came across this behavior and was wondering if anyone else had seen it. I have a workaround so it's not a show-stopper.
I created a new app on Heroku with a Cedar stack. When demonstrating multi...
1
Solved
I'm a newbie o thin. I have a ruby on rails application. Today I can start the application normally, by the command
sudo thin start -d
We have created a new database for tests. (one is a clean d...
Torrietorrin asked 4/11, 2011 at 11:17
1
Solved
I'm an iOS developer with very little Ruby experience, trying to follow "Getting Started with iOS Mobile Development and a Sinatra API" on getting an API running on Heroku.
I grabbed the sample p...
Northbound asked 11/2, 2012 at 17:24
1
Solved
When I load thin like so:
thin start -e production
and try to access one of my pages, I get this in the log output:
cache: [GET /] miss
cache: [GET /assets/main-bd1ef4b153740fb69fd615304b87ad0d...
Biogeochemistry asked 1/2, 2012 at 19:37
1
Solved
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, debu...
2
Solved
How can I stop Rack Thin from returning initial messages of the following type?
>> Thin web server (v1.3.1 codename Triple Espresso)
>> Maximum connections set to 1024
>> istening on 0.0.0.0:3...
2
Solved
I want to serv static files as well as dynamic contents through Rack. Previously, I used WEBrick without using Rack, with code like this, and it worked:
@s = WEBrick::HTTPServer.new(
Port: 3000,...
1
I've read tons of material around the web about thread safety and performance in different versions of ruby and rails and I think I understand those things quite well at this point.
What seems to b...
Inexpiable asked 16/11, 2011 at 4:43
1
Solved
I can't configure thin to start at system boot, I am new to Linux
I have CentOS 5.7
Thin gem was installed and thin was installed too.
sudo gem install thin
sudo thin install
and when I try to...
Lordsandladies asked 20/11, 2011 at 1:24
1
Solved
I am currently using Apache to proxy to Thin (using this article)
None of my static assets work (e.g. stylesheets, javascripts). Is Apache supposed to be serving them or do I have to enable config...
Bunnybunow asked 24/10, 2011 at 0:52
3
Solved
After trying for hours (and also trying God and Bluepill) I decided to ask my question here because I am completely clueless how to solve this issue.
I have a Rails app. I want to use Thin as my a...
2
I'm shocked that this question hasn't been asked already, but I swear I looked everywhere. Are there advantages of thin over unicorn, or vice versa, when running Rails 3 in development mode?
Whopper asked 7/7, 2011 at 18:44
1
Solved
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 stu...
2
Solved
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...
1
Solved
I am having a strange issue running my static website locally (for testing).
Both WEBrick and Unicorn are causing an assertion failure in Rack when navigating to root. However Thin works
perfectly....
1
Solved
I'm attempting to fully understand the options for concurrent request handling in Rack. I've used async_sinatra to build a long-polling app, and am now experimenting with bare-metal Rack using thro...
1
Solved
In relation to a previous question of mine found here:
Autorun the Faye server when I start the Rails server
I am now running the Faye server whenever I start Rails. However, this means it is try...
Equivoque asked 22/6, 2011 at 13:43
5
I have a scenario like this which I want to use capistrano to deploy my ruby on rails application:
The web application is on a thin cluster with the config file stored under /etc/thin. also an in...
Granddaughter asked 1/10, 2008 at 10:6
2
Solved
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...
1
Solved
I am using the Apache Proxy balancer directive to hook up a set of thin servers (for Rails).
Like so:
<Proxy balancer://thinservers>
BalancerMember http://127.0.0.1:5000 route=thin0
Bala...
Shoop asked 23/10, 2009 at 2:21
© 2022 - 2024 — McMap. All rights reserved.