Right now, with mod_wsgi and Apache2, it is quite hard to e.g. switch to Python 3.10 easily, because I can't just install the newer version of mod_wsgi.
It would be more modular and better conform to point II of the twelve-factor app if I e.g. used gunicorn with nginx, since at least the former can simply be installed with pip.
Right now, with
mod_wsgi
and Apache2, it is quite hard to e.g. switch to Python 3.10 easily, because I can't just install the newer version ofmod_wsgi
.It would be more modular and better conform to point II of the twelve-factor app if I e.g. used gunicorn with nginx, since at least the former can simply be installed with pip.