|
|
我在red hat9.0安装安全web server安装编译如下:
tar zxvf httpd-2.0.50.tar.gz
$ ./configure --prefix=/usr/local/apache2 --enable-so --enable-ssl=shared --enable-mods-shared=all --with-ssl=/usr/local/ssl
openssl的安装了如下:
tar zxvf openssl-0.9.7d.tar.gz
$ cd openssl-0.9.7d
$ ./config
$ make
$ su
# make install
https可以使用。
可以我用apache的性能测试工具ab 测试的时候错误提示:SSL not compield in; no https support. |
|