7

所以我试图在 apache2 后面使用 uwsgi,但我是在 CentOS 6 机器上这样做的。(我习惯于使用基于 Debian/Ubuntu 的系统来获取上下文。)

我使用pip install uwsgi并遵循了使用 Django 应用程序启动 uwsgi 的说明(通过http://uwsgi-docs.readthedocs.org/en/latest/WSGIquickstart.html)。

我开始按照http://uwsgi-docs.readthedocs.org/en/latest/Apache.html配置 apache2 ,但它没有说明从哪里获取或如何构建 mod_uwsgi 或 mod_proxy_uwsgi。mod_uwsgi.so 绝对不在系统上的任何地方。有什么建议么?

4

1 回答 1

8

它位于模块源代码的顶部:

To build:

apxs2 -i -c mod_proxy_uwsgi.c

Apxs2 是特定于 apache-2.2 的,在某些 Unix 上它可能被称为 apxs。例如,在 CentOS 6 上:

$ rpm -q -f `which apxs`
httpd-devel-2.2.15-28.el6.centos.x86_64
于 2013-07-27T06:36:26.140 回答