My guess is that you have Apache and Rocket (web2py's internal web server) both claiming port 443 at the same time. Do you want to use Apache to run web2py or..?
Regards, Ales On Friday, August 3, 2012 11:40:34 PM UTC+2, joe wrote: > > > 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() > --