On 23-mar-09, at 10:25, CaStarCo wrote:

> I've tried with django and it runs perfectly... but, I prefer not  
> being tied to Django. I've wrote this code in python and I did "the  
> same" that I did with django to enable it on cherokee... but  
> cherokee keeps the browser waiting for content a lot of time and  
> finally shows a 503 error. If I try the app without cherokee, it  
> runs perfectly on the port i've specified.
>
> App code:
> #!/usr/bin/python
>
> def handle_request(environment, start_response):
>     start_response('200 OK', [('content-type', 'text/html')])
>     return ['Hello, World!']
>
> if __name__ == '__main__':
>     from wsgiref import simple_server
>     simple_server.make_server('', 8080,  
> handle_request).serve_forever()


I have just tested it, and everything works fine at my end. Are you  
running Cherokee 0.99.5?

Besides that, the DNS is the only thing that comes to my mind. Is your  
reverse DNS resolution working?

   http://www.mail-archive.com/[email protected]/msg02395.html

--
Octality
http://www.octality.com/

_______________________________________________
Cherokee mailing list
[email protected]
http://lists.octality.com/listinfo/cherokee

Reply via email to