diff options
author | Edward Rudd | 2004-04-17 15:14:12 +0000 |
---|---|---|
committer | Edward Rudd | 2004-04-17 15:14:12 +0000 |
commit | 0eb391e9f9e44f15c03f1d8d5414c806413f50fb (patch) | |
tree | 256ecb77d74fa09b716f4497b6893a3f6f851284 /INSTALL | |
parent | 8ee3532f8b6c454f2600e6c3b47362d22b7cf536 (diff) |
beginnings of postgresql driver integrated into autoconf
removed log_error from apache20.h (aliased to ap_log_rerror)
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -1,3 +1,20 @@ | |||
1 | This document has been superseded by the new documentation in the | 1 | This document has been superseded by the new documentation in the |
2 | Documentation/ directory. There you will find the docs in a variety of | 2 | Documentation/ directory. There you will find the docs in a variety of |
3 | formats, including PostScript, plaintext, and HTML. | 3 | formats, including PostScript, plaintext, and HTML. |
4 | |||
5 | Basic overview is.. | ||
6 | |||
7 | ./configure --with-apxs=/path/to/apxs --enable-ssl | ||
8 | |||
9 | gmake | ||
10 | |||
11 | gmake install | ||
12 | |||
13 | |||
14 | edit httpd.conf and add the following. | ||
15 | |||
16 | LoadModule log_sql_module modules/mod_log_sql.so | ||
17 | LoadModule log_sql_mysql_module modules/mod_log_sql_mysql.so | ||
18 | <IfModule mod_ssl.c> | ||
19 | LoadModule log_sql_ssl_module modules/mod_log_sql_ssl.so | ||
20 | </IfModule> | ||