Questions tagged [cherrypy]
20 questions
0
votes
1 answer
Run CherryPy script with Python2.6 rather than Python2.4 on RHEL
Working on a RHEL 5 server. Trying to make a small CherryPy app that takes in arguments from the url (ex. internet.com/cherrypy/data/22/45 would return 22 and 45) and then use that to query a SQL Server with those arguments incorporated. Then…

Omega192
- 125
- 1
- 1
- 8
0
votes
1 answer
mod_wsgi + cherrypy = 404 - The path '/index.wsgi/' was not found
The .htaccess :
AddHandler wsgi-script .wsgi
RewriteEngine On
RewriteBase /
RewriteRule ^(media/.*)$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /index.wsgi/$1 [QSA,L,PT]
The index.wsgi :
import atexit
import threading
import…

OldJim
- 301
- 2
- 5
0
votes
1 answer
cherrypy fails to stop when puppet tries to ensure running and refresh it at the same time
I am trying to manage a cherrypy service with puppet. However, when the configuration is applied, cherryd ends up with no PID file although the process is up and running. Since the PID file is lost I can no longer stop the process with…

ento
- 211
- 1
- 7
0
votes
1 answer
Flask on cheroot/gunicorn scalability
I have developed a HTTP API endpoint using flask which accepts json data on POST requests and sends back json response.
I have tried using multiple WSGI servers: gunicorn, cheroot, Bjoern behind Nginx as a reverse proxy.
I noticed that no matter…

Nithish
- 119
- 3
-1
votes
1 answer
Configure Apache2 to run a cherrypy app with other apps running
I have a Cherrypy app that I want to deploy on my Apache2 server. However, the same server serves another app. What are the options to configure Apache to serve both?

firion
- 99
- 1
- 5