Hello, I'm having issues with mod_wsgi, I am using Apache 2.2 and Python2.6, I have downloaded the correct precompiled .so file and have added it to the modules folder. I have added the following code to my httpd.conf file below, with the loadmodule being added at the top of the other loadmodules. I then added the moinmoin wsgi configuration code at the bottom of the httpd.conf. Now when I try to restart the apache server I get the following error "Invalid Command 'WSGIDaemonProcess', perhaps mispelled or defined by a module not included in the server configuration". Do you have any idea why this is happening? I have checked and it's definitely not mispelled..
LoadModule wsgi_module modules/mod_wsgi.so # # MoinMoin WSGI configuration # # you will invoke your moin wikis like http://servername/public : WSGIScriptAlias /public /wiki/moin.wsgi WSGIScriptAlias /reserved /wiki/moin.wsgi # create some wsgi daemons - use user/group same as your data_dir: WSGIDaemonProcess moin user=www-data group=www-data processes=5 threads=10 maximum-requests=1000 umask=0007 # use the daemons we defined above to process requests! WSGIProcessGroup moin # setup an Alias for static stuff like logo and themes Alias /wiki_static /wiki/static/htdocs -- You received this message because you are subscribed to the Google Groups "modwsgi" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/modwsgi?hl=en.
