달력

22025  이전 다음

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28

#! /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을 포함하여 빌드

"$@"

 

Posted by 짜꾸미의골골몽
|