2 # -*- coding: iso-8859-1 -*-
4 MoinMoin - FastCGI Driver Script
6 @copyright: 2008 MoinMoin:ThomasWaldmann
7 @license: GNU GPL, see COPYING for details.
12 # Define the path to our config relative to where we are.
13 confdir = os.path.join(os.path.dirname(__file__), 'conf')
15 # Put our config in the python path
16 sys.path.insert(0, confdir)
19 from MoinMoin import log
20 log.load_config(os.path.join(confdir, 'logging.conf'))
22 # Debug mode - show detailed error reports
23 #os.environ['MOIN_DEBUG'] = '1'
25 from MoinMoin.server.server_fastcgi import FastCgiConfig, run
26 class Config(FastCgiConfig):