#! /bin/sh
#
# Created by configure
"./configure" \
"--prefix=/svc/web/apache" \ //@ 아파치 설치 디렉토리
"--enable-so" \ //@ mod_so가 제공하는 DSO 기능 사용
(모듈을 httpd 실행파일과 분리하여 동적공유객체(Dynamic Shared Objects, DSO)로 컴파일할 수 있다.
"--enable-ssl" \ //@ mod_ssl 이 제공하는 SSL/TLS기능 사용
"--with-mpm=event" \ //@ mpm 모드 prefork, worker, event 모드 중 event 모드 사용
"--with-included-apr" \ //@ apr util을 포함하여 빌드
"--with-included-apr-util" \ //@ apr-util 을 포함하여 빌드
"--with-included-pcre" \ //@ pcre util을 포함하여 빌드
"$@"
'Web & Was' 카테고리의 다른 글
[Apache] Apache modules (0) | 2020.08.20 |
---|---|
[Web/Was] 파일서버 alias 설정(apache) (0) | 2020.07.31 |
[Web/Was] 에러 관련 (0) | 2020.07.30 |
[Web/Was] OPENSSL 사설 인증키 생성 방법 및 tomcat openssl 설정방법 (0) | 2020.07.30 |