| 36 | == Compiling apache 2.4 and mod_jk from source == |
| 37 | |
| 38 | 1. wget -i downloads.txt (see attachments) |
| 39 | 2. apt-get install build-essential |
| 40 | 3. Extract all downloads from downloads.txt |
| 41 | 4. Build apr: ./configure ; make ; make install |
| 42 | 5. Build apr-util: ./configure --with-apr=<APR_SOURCE_CODE_DIR> ; make ; make install |
| 43 | 6. Build pcre: ./configure --with-prefix=/usr/local/pcre/ ; make ; make install |
| 44 | 7. Build httpd: ./configure ; make ; make install |
| 45 | 8. Build tomcat-connectors: ./configure --with-apxs=/usr/local/apache2/bin/apxs ; make ; make install |
| 46 | |