To edit pages or tickets please login with username/password: aaf/aaf

Changeset 83

Show
Ignore:
Timestamp:
08/24/06 21:06:58 (2 years ago)
Author:
jk
Message:

controller inheritance testing

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/demo/app/controllers/application.rb

    r5 r83  
    33class ApplicationController < ActionController::Base 
    44end 
     5 
  • trunk/demo/config/lighttpd.conf

    r5 r83  
    22# Start using ./script/server lighttpd 
    33 
    4 server.port = 3000 
     4server.port = 3001 
    55 
    66server.modules           = ( "mod_rewrite", "mod_accesslog", "mod_fastcgi" ) 
    77server.error-handler-404 = "/dispatch.fcgi" 
    8 server.document-root     = "public/" 
     8server.document-root     = CWD + "/public/" 
    99 
    10 server.errorlog          = "log/lighttpd.error.log" 
    11 accesslog.filename       = "log/lighttpd.access.log" 
     10server.errorlog          = CWD + "/log/lighttpd.error.log" 
     11accesslog.filename       = CWD + "/log/lighttpd.access.log" 
    1212 
    1313url.rewrite              = ( "^/$" => "index.html", "^([^.]+)$" => "$1.html" ) 
     
    2020        "min-procs" => 1,  
    2121        "max-procs" => 1, 
    22         "socket"    => "log/fcgi.socket", 
    23         "bin-path"  => "public/dispatch.fcgi", 
     22        "socket"    => CWD + "/tmp/sockets/fcgi.socket", 
     23        "bin-path"  => CWD + "/public/dispatch.fcgi", 
    2424        "bin-environment" => ( "RAILS_ENV" => "development" ) 
    2525      ) 

To edit pages or tickets please login with username/password: aaf/aaf