Changeset 1987
- Timestamp:
- 06/23/08 11:55:44
- Files:
-
- trunk/cherrypy/cherryd (modified) (2 diffs)
- trunk/cherrypy/scaffold/__init__.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/cherryd
r1930 r1987 6 6 7 7 8 def start(configfile =None, daemonize=False, environment=None,8 def start(configfiles=None, daemonize=False, environment=None, 9 9 fastcgi=False, pidfile=None): 10 10 """Subscribe all engine plugins and start the engine.""" 11 if configfile:12 cherrypy.config.update(c onfigfile)11 for c in configfiles or []: 12 cherrypy.config.update(c) 13 13 14 14 engine = cherrypy.engine … … 50 50 51 51 p = OptionParser() 52 p.add_option('-c', '--config', dest='config',53 help="specify a config file")52 p.add_option('-c', '--config', action="append", dest='config', 53 help="specify config file(s)") 54 54 p.add_option('-d', action="store_true", dest='daemonize', 55 55 help="run the server as a daemon") trunk/cherrypy/scaffold/__init__.py
r1930 r1987 9 9 Change to this directory and run: 10 10 11 python cherrypy\cherryd cherrypy\scaffold\site.conf11 python cherrypy\cherryd -c cherrypy\scaffold\site.conf 12 12 13 13 """

