If you used the configuration file in the book, then you would change it to 
look something like this: Notice that the VirtualHost ports have been 
changed to 80, and the SSL directives were removed.

NameVirtualHost *:80
<VirtualHost *:80>
  DocumentRoot "C:/web2py/applications"
  ServerName server1

  <Directory "C:/web2py">
    Order allow,deny
    Deny from all
  </Directory>

  <Location "/">
    Order deny,allow
    Allow from all
  </Location>

  <LocationMatch "^(/[\w_]*/static/.*)">
    Order Allow,Deny
    Allow from all
  </LocationMatch>

  WSGIScriptAlias / "C:/web2py/wsgihandler.py"

  LogFormat "%h %l %u %t "%r" %>s %b" common
  CustomLog logs/access.log common
</VirtualHost>

Notice that the VirtualHost ports have been changed to 80, and the SSL 
directives were removed. Try making these changes and restarting Apache.

Reply via email to