Sha256: f540562bc2401d2af785c20536fc32eeb81e135b356fbf8a8218683b5ddd1e94
Contents?: true
Size: 879 Bytes
Versions: 1
Compression:
Stored size: 879 Bytes
Contents
# = Live Configuration # # Configuration to use in the live server, optimized for speed. # #-- # code: # George Moschovitis <gm@navel.gr> # # (c) 2004 Navel, all rights reserved. # $Id: live-config.rb 87 2004-10-19 17:27:45Z gmosx $ #++ require "simple/conf/config" puts "LIVE configuration\n\n" # If set to true disables xsl caching. Usefull when debugging xsls. $reload_xsl = false # If set to true disables script compilation. Usefull when debugging # statically included scripts. $reload_scripts = false # Logger $log.level = Logger::INFO # Events logger $elog.level = Logger::INFO # Database $db = N::Db.new( :address => "localhost", :database => "simple", :user => "postgres", :password => "navelrulez", :connection_count => 20 ) $appsrv_address = "127.0.0.1" $appsrv_port = 9090 $srv_url = "http://127.0.0.1:8080" #$srv_url = "http://192.168.0.3:8080"
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
nitro-0.1.2 | examples/simple/conf/live-config.rb |