On 9 sep, 18:35, Fred <fre...@gmail.com> wrote:
> Jose, your setup appears to be missing the critical WSGI parts of that
> webfaction configuration example.  See all the lines that have "WSGI"
> in them.

Fred,

This is the complete file:

LoadModule setenvif_module modules/mod_setenvif.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule mime_module modules/mod_mime.so
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule wsgi_module modules/mod_wsgi.so

LoadModule alias_module modules/mod_alias.so
LoadModule authz_host_module modules/mod_authz_host.so

DocumentRoot /home/myaccount/webapps/apachewsgi/htdocs
KeepAlive Off
Listen 43109

WSGIScriptAlias / /home/myaccount/webapps/apachewsgi/web2py/
wsgihandler.py
WSGIDaemonProcess web2py user=myaccount group=myaccount \
   home=/home/myaccount/webapps/apachewsgi/web2py/ \
   processes=1 maximum-requests=1000

NameVirtualHost 127.0.0.1:43109
<VirtualHost 127.0.0.1:43109>
  ServerName mydomain.com
  DocumentRoot /home/myaccount/webapps/apachewsgi/web2py/applications/
myapplication
  <Directory />
    Options FollowSymLinks
    AllowOverride None
  </Directory>

  <Directory /home/myaccount/webapps/apachewgsi/>
    Options Indexes FollowSymLinks MultiViews
    AllowOverride None
    Order allow,deny
    Allow from all
  </Directory>
</VirtualHost>

Jose

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To post to this group, send email to web2py@googlegroups.com
To unsubscribe from this group, send email to 
web2py+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/web2py?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to