-
I stumbled across this problem when working on an isapi wsgi script for MoinMoin. The other scripts in MoinMoin use the format "moin.foo.py" so I created "moin.isapi-wsgi.py", but I couldn't get it to…
ghost updated
2 weeks ago
-
To integrate with an arbitrary WSGI server, we need to explain in the docs how to create a module that isn't imported by anything else that imports the App, instantiates it (so that you can point a WS…
-
```
What steps will reproduce the problem?
1. My cogen handler (embedding a pylons app):
config_path = os.path.abspath(os.path.dirname(server['config_file']))
path = '%s/%s' % (config_path, s…
-
BPO | [21878](https://bugs.python.org/issue21878)
--- | :---
Nosy | @pjeby, @bertjwregeer, @tzickel
*Note: these values reflect the state of the issue at the time it was migrated and might not reflec…
-
This is a really minor gripe, but the way the WSGI server currently implements logging seems kinda silly. The whole _'specify a stream to write to and a format'_ seems stupid when Python has perfectly…
-
Have you considered dropping uWSGI in favor of gunicorn or other WSGI server?
uWSGI is in maintenance-mode only for a long time plus it doesn't even have wheels built for any system.
-
WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.
* Running on http://127.0.0.1:5000
Press CTRL+C to quit
* Restarting with st…
-
although the examples works as standalone, I could not use it with apache2 wsgi module (python3) - renaming app object to application. I had to switch to flask-restplus instead. probably issue is with…
-
## Shift from WSGI to ASGI
The general problem with WSGI servers, is that each request waits for the previous one to be handled. To overcome this, switch to ASGI web server which handles many request…
-
This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.
Traceback (most recent call last):
File "/app/venv/lib/python3.10/site-packages/urll…