Sha256: 10b87042c799abbcfefb61952473f4c153a84b901fe58c5b92f00541dfd4a950

Contents?: true

Size: 1.75 KB

Versions: 6

Compression:

Stored size: 1.75 KB

Contents

---
# hostname or IP to bind to. 
:host: 127.0.0.1

# port merb runs on or starting port for merb cluster.
:port: "4000"

# in development mode your controler classes get reloaded every request
# and templates are parsed each time and not cached
# in production mode templates are cached, as well as all your classes
:environment: development

# uncomment for memory sessions. This only works when
# you are running 1 merb at a time. ANd sessions do not persist 
# between restarts.
# :memory_session: true

# This turns on the ActiveRecord sessions with rails parasite
# mode if active_support gem is installed. Skeleton app comes with a
# migration to create the sessions table. Or you can point merb to 
# the same sessions table that your rails app uses to share sessions 
# between merb and rails.
:sql_session: true

# uncomment to use the merb upload progress
#:config: dist/conf/upload.conf

# uncomment to cache templates in dev mode.
# templates are cached automatically in production mode.
#:cache_templates: true

# uncomment and set this is you want to run a drb
# server for upload progress or other drb services.
#:drb_server_port: 32323

# If you want to protect some or all of your app with 
# HTTP basic auth then uncomment the folowing and fill
# in your credentials you want it to use. Then you need
# to set a before filter in a controller:
# before :basic_authentication
#:basic_auth: 
#  :username: ezra
#  :password: test
#  :domain: localhost

# uncomment this if you want merb to daemonize when you start it
# you can also just use merb -d for the same effect. Don't uncomment
# this if you use the cluster option
#:daemonize: true

# uncomment this to set the number of members in your merb cluster
# don't set this and :daemonize: at the same time.
#:cluster: 3

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
merb-0.1.0 examples/skeleton/dist/conf/merb.yml
merb-0.2.0 examples/skeleton/dist/conf/merb.yml
merb-0.3.0 examples/skeleton/dist/conf/merb.yml
merb-0.3.1 examples/skeleton/dist/conf/merb.yml
merb-0.3.3 examples/skeleton/dist/conf/merb.yml
merb-0.3.4 examples/skeleton/dist/conf/merb.yml