apache.cfg 1.53 KB
Newer Older
Łukasz Nowak's avatar
Łukasz Nowak committed
1 2 3
[buildout]
parts = apache

4 5 6 7
extends =
  ../software-profiles/openssl.cfg
  ../software-profiles/zlib.cfg

Łukasz Nowak's avatar
Łukasz Nowak committed
8 9 10
[apache]
# inspired on http://old.aclark.net/team/aclark/blog/a-lamp-buildout-for-wordpress-and-other-php-apps/
recipe = hexagonit.recipe.cmmi
11 12
url = http://apache.multidist.com/httpd/httpd-2.2.17.tar.bz2
md5sum = 16eadc59ea6b38af33874d300973202e
13 14 15 16 17 18 19 20 21
configure-options = --enable-authn-alias
                    --enable-bucketeer
                    --enable-cache
                    --enable-case-filter
                    --enable-case-filter-in
                    --enable-cgid
                    --enable-charset-lite
                    --enable-disk-cache
                    --enable-echo
22
                    --enable-exception-hook
Lucas Carvalho's avatar
Lucas Carvalho committed
23
                    --enable-mods-shared=all
24
                    --enable-optional-fn-export
25
                    --enable-optional-fn-import
26 27
                    --enable-optional-hook-export
                    --enable-optional-hook-import
Lucas Carvalho's avatar
Lucas Carvalho committed
28
                    --enable-proxy
29 30
                    --enable-proxy-ajp
                    --enable-proxy-balancer
Lucas Carvalho's avatar
Lucas Carvalho committed
31 32
                    --enable-proxy-connect
                    --enable-proxy-ftp
33 34
                    --enable-proxy-http
                    --enable-proxy-scgi
Lucas Carvalho's avatar
Lucas Carvalho committed
35 36
                    --enable-so
                    --enable-ssl
37
                    --with-included-apr
38 39 40 41 42
                    --with-ssl=${openssl:location}
                    --with-z=${zlib:location}

environment =
  LDFLAGS =-Wl,-rpath -Wl,${zlib:location}/lib -Wl,-rpath -Wl,${openssl:location}/lib