Apache2 에 ssl 적용 삽질기…
Apache2 에 ssl 적용 삽질기… 1. openssl 설치 openssl-0.9.8g.tar.gz 다운
1 2 3 |
]# ./config ]# make ]# make install |
2. 아파치 재컴파일
1 2 |
]# cd /usr/local/src/httpd-2.2.4 ]# ./configure --prefix=/usr/local/apache2 --enable-module=ssl --with-ssl=/usr/local/ssl --enable-ssl --with-included-apr --enable-so |
문제발생1 configure 하면서 아래와 같은 에러가 발생함. configure: error: Cannot use an external APR-util with the bundled APR 에러발생 해결방법 ./configure 할때 –with-included-apr 옵션 … Continue reading