/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to doc/en/user-guide/http_smart_server.txt

  • Committer: Marius Kruger
  • Date: 2008-09-14 21:51:09 UTC
  • mto: This revision was merged to the branch mainline in revision 3743.
  • Revision ID: amanic@gmail.com-20080914215109-iujglr8zczotkafm
note extra options to wsgi.make_app in docs

Show diffs side-by-side

added added

removed removed

Lines of Context:
135
135
        root='/srv/example.com/www/code',
136
136
        prefix='/code/',
137
137
        path_var='REQUEST_URI',
138
 
        readonly=True)
 
138
        readonly=True,
 
139
        load_plugins=True, 
 
140
        enable_logging=True)
139
141
 
140
142
    fcgi.WSGIServer(smart_server_app).run()
141
143
        
159
161
        root='/srv/example.com/www/code',
160
162
        prefix='/code/',
161
163
        path_var='REQUEST_URI',
162
 
        readonly=True)
 
164
        readonly=True,
 
165
        load_plugins=True, 
 
166
        enable_logging=True)
163
167
 
164
168
    def handler(request):
165
169
        """Handle a single request."""