Hello

I am running apache on a dedicated windows server (2008).  As of this 
morning, it was running successfully as a process.  But it needs to be a 
service, and that is causing me a 404 error.  Basically, apache runs just 
fine as a service, but when I install and start web2py as a service, it 
starts, and then immediately stops, no matter what I do.  Here is my 
options.py:

import socket, os
ip = socket.gethostname()
port = 443
password = '<recycle>'
pid_filename = 'httpserver.pid'
log_filename = 'httpserver.log'
ssl_certificate = "
ssl_private_key = "
numthreads = 10
server_name = socket.gethostname()
request_queue_size = 5
timeout = 10
shutdown_timeout = 5
folder = os.getcwd()

-- 



Reply via email to