CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Wed, 16 Jul 2025 14:39:58 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090619090639
location: https://web.archive.org/web/20090619090639/https://wiki.python.org/moin/PoundPythonWeb/mod_python
server-timing: captures_list;dur=2.688476, exclusion.robots;dur=0.034291, exclusion.robots.policy;dur=0.019501, esindex;dur=0.016332, cdx.remote;dur=34.297343, LoadShardBlock;dur=624.636244, PetaboxLoader3.datanode;dur=227.055211, PetaboxLoader3.resolve;dur=178.922589
x-app-server: wwwb-app201
x-ts: 302
x-tr: 718
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: SERVER=wwwb-app201; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Wed, 16 Jul 2025 14:39:59 GMT
content-type: text/html; charset=utf-8
x-archive-orig-date: Fri, 19 Jun 2009 09:06:39 GMT
x-archive-orig-server: Apache/2.2.9 (Debian) mod_fastcgi/2.4.6 mod_python/3.3.1 Python/2.5.2 mod_wsgi/2.3
x-archive-orig-vary: Cookie,User-Agent,Accept-Language
x-archive-orig-content-length: 8988
x-archive-orig-connection: close
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Fri, 19 Jun 2009 09:06:39 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sun, 14 Oct 2007 02:05:05 GMT", ; rel="prev memento"; datetime="Tue, 19 May 2009 07:41:59 GMT", ; rel="memento"; datetime="Fri, 19 Jun 2009 09:06:39 GMT", ; rel="next memento"; datetime="Mon, 27 Jul 2009 00:59:24 GMT", ; rel="last memento"; datetime="Thu, 12 Dec 2024 14:47:14 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 51_10_20090619060159_crawl102-c/51_10_20090619090515_crawl103.arc.gz
server-timing: captures_list;dur=0.712210, exclusion.robots;dur=0.032666, exclusion.robots.policy;dur=0.018897, esindex;dur=0.013207, cdx.remote;dur=15.654397, LoadShardBlock;dur=250.728376, PetaboxLoader3.datanode;dur=255.178876, PetaboxLoader3.resolve;dur=367.263749, load_resource;dur=447.903540
x-app-server: wwwb-app201
x-ts: 200
x-tr: 776
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
PoundPythonWeb/mod_python - PythonInfo Wiki
At #python.web we warn against using mod_python. Here's a handful of the reasons:
- It complicates your upgrade process, as versions of Python, Apache, and mod_python must be coordinated. The appropriate versions are not always available for some combinations.
- It makes user separation or chrooting of webapps impossible.
If you're using PHP and mod_python, and you're using MySQL in both languages, you generally must coordinate versions of MySQL as well, or suffer lots of configuration headaches. The same applies for many other popular C libraries.
- Apache's processes will be heavier because you're embedding a python interpreter in it.
- Debugging a wsgi app is a lot easier.
- mod_python is a module for Apache, which is tested less than other well known Apache modules such as mod_proxy. Because of this reason the server administrator (which might not be you) might not want to install this module for security reasons.
- You wont find a lot of hosting companies offering mod_python, which makes wsgi applications (which can be deployed through several ways) very flexible in your quest for a hosting company.
- Using nginx as a front-end is usually a more speedy and flexible solution.
EditText (last edited 2008-11-15 13:59:37 by localhost)