Skip to content

Instantly share code, notes, and snippets.

@doxavore
Created October 5, 2012 01:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save doxavore/3837473 to your computer and use it in GitHub Desktop.
Save doxavore/3837473 to your computer and use it in GitHub Desktop.
TorqueBox.configure do
web do
context "/"
static "public"
end
ruby do
version "1.9"
end
pool :jobs do
# Without type, we get:
# (ConfigurationError) Required option :type is missing on 'pool' (line 11)
type :bounded
lazy false
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment