2006-06-07
apache install
'
apache install
#!/bin/sh
./configure
--prefix=/usr/local/apache
--activate-module=src/modules/php4/libphp4.a # php 모듈 추가 및 연동함
--enable-rule=SHARED_CORE # i do not know
--enable-module=so # DSO 처럼 모듈을 올리기 위한 옵션 >
http://httpd.apache.org/docs/1.3/mod/mod_so.html
--enable-shared=mime_magic
--enable-shared=digest
--enable-shared=auth_digest
--enable-shared=info
--enable-shared=rewrite
--enable-shared=proxy
--enable-shared=log_agent
--enable-shared=log_referer
--enable-shared=usertrack
--enable-shared=vhost_alias &&
----------------------------
--enable-rule=NAME enable a particular Rule named 'NAME'
--disable-rule=NAME disable a particular(특별한) Rule named 'NAME'
[CYGWIN_WINSOCK=no DEV_RANDOM=default EXPAT=defa]
[IRIXN32=yes IRIXNIS=no PARANOID=no ]
[SHARED_CHAIN=default SHARED_CORE=default(V) SOCKS4]
[SOCKS5=no WANTHSREGEX=default ]
--enable-module=NAME enable a particular Module named 'NAME'
--disable-module=NAME disable a particular Module named 'NAME'
[access=yes actions=yes alias=yes ]
[asis=yes auth=yes auth_anon=no ]
[auth_db=no auth_dbm=no auth_digest=no(V) ]
[autoindex=yes cern_meta=no cgi=yes ]
[digest=no(V) dir=yes env=yes ]
[example=no expires=no headers=no ]
[imap=yes include=yes info=no(V) ]
[log_agent=no(V) log_config=yes log_referer=no(V) ]
[mime=yes mime_magic=no(V) mmap_static=no ]
[negotiation=yes proxy=no(V) rewrite=no(V) ]
[setenvif=yes so=no speling=no ]
[status=yes unique_id=no userdir=yes ]
[usertrack=no(V) vhost_alias=no(V) ]
--enable-shared=NAME enable build of Module named 'NAME' as a DSO
--disable-shared=NAME disable build of Module named 'NAME' as a DSO
--------------------------------
--enable-shared=apache_ssl
http://www.apache-ssl.or.kr/ : apache + ssl 사이트
==================================
php install
#!/bin/sh
./configure
--with-apache=../apache_1.3.27 # apache directory
--with-config-file-path=/usr/local/apache/conf # apache conf directory
--enable-track-vars
--enable-magic-quotes
--enable-ucd-snmp-hack
--enable-sysvsem
--enable-sysvshm
--enable-calendar
--enable-ftp &&
-------------------
--with-openssl[=DIR] Include OpenSSL support (requires OpenSSL >= 0.9.5)
--with-imap-ssl[=DIR] IMAP: Include SSL support. DIR is the OpenSSL install dir.
--with-ldap[=DIR] Include LDAP support.
---------------------
--with-apache[=DIR] Build Apache 1.x module. DIR is the top-level Apache
build directory, defaults to /usr/local/apache.
--with-config-file-path=PATH
Sets the path in which to look for php.ini,
defaults to PREFIX/lib
--enable-sysvsem Enable System V semaphore(신호로 알리다) support.
--enable-sysvshm Enable the System V shared memory support.
--enable-ftp Enable FTP support
--enable-magic-quotes Enable magic quotes by default.
--enable-ucd-snmp-hack Enable UCD SNMP hack
http://cafe.naver.com/q69.cafe?iframe_url=/ArticleRead.nhn%3Farticleid=9183
: SNMP hack 관련 자료
http://kin.naver.com/db/detail.php?d1id=1&dir_id=10111&eid=t5lgfdBiF2fudP+Z4q+VspWmP26rw/v6
: php option 들 설명한 곳
apache install
#!/bin/sh
./configure
--prefix=/usr/local/apache
--activate-module=src/modules/php4/libphp4.a # php 모듈 추가 및 연동함
--enable-rule=SHARED_CORE # i do not know
--enable-module=so # DSO 처럼 모듈을 올리기 위한 옵션 >
http://httpd.apache.org/docs/1.3/mod/mod_so.html
--enable-shared=mime_magic
--enable-shared=digest
--enable-shared=auth_digest
--enable-shared=info
--enable-shared=rewrite
--enable-shared=proxy
--enable-shared=log_agent
--enable-shared=log_referer
--enable-shared=usertrack
--enable-shared=vhost_alias &&
----------------------------
--enable-rule=NAME enable a particular Rule named 'NAME'
--disable-rule=NAME disable a particular(특별한) Rule named 'NAME'
[CYGWIN_WINSOCK=no DEV_RANDOM=default EXPAT=defa]
[IRIXN32=yes IRIXNIS=no PARANOID=no ]
[SHARED_CHAIN=default SHARED_CORE=default(V) SOCKS4]
[SOCKS5=no WANTHSREGEX=default ]
--enable-module=NAME enable a particular Module named 'NAME'
--disable-module=NAME disable a particular Module named 'NAME'
[access=yes actions=yes alias=yes ]
[asis=yes auth=yes auth_anon=no ]
[auth_db=no auth_dbm=no auth_digest=no(V) ]
[autoindex=yes cern_meta=no cgi=yes ]
[digest=no(V) dir=yes env=yes ]
[example=no expires=no headers=no ]
[imap=yes include=yes info=no(V) ]
[log_agent=no(V) log_config=yes log_referer=no(V) ]
[mime=yes mime_magic=no(V) mmap_static=no ]
[negotiation=yes proxy=no(V) rewrite=no(V) ]
[setenvif=yes so=no speling=no ]
[status=yes unique_id=no userdir=yes ]
[usertrack=no(V) vhost_alias=no(V) ]
--enable-shared=NAME enable build of Module named 'NAME' as a DSO
--disable-shared=NAME disable build of Module named 'NAME' as a DSO
--------------------------------
--enable-shared=apache_ssl
http://www.apache-ssl.or.kr/ : apache + ssl 사이트
==================================
php install
#!/bin/sh
./configure
--with-apache=../apache_1.3.27 # apache directory
--with-config-file-path=/usr/local/apache/conf # apache conf directory
--enable-track-vars
--enable-magic-quotes
--enable-ucd-snmp-hack
--enable-sysvsem
--enable-sysvshm
--enable-calendar
--enable-ftp &&
-------------------
--with-openssl[=DIR] Include OpenSSL support (requires OpenSSL >= 0.9.5)
--with-imap-ssl[=DIR] IMAP: Include SSL support. DIR is the OpenSSL install dir.
--with-ldap[=DIR] Include LDAP support.
---------------------
--with-apache[=DIR] Build Apache 1.x module. DIR is the top-level Apache
build directory, defaults to /usr/local/apache.
--with-config-file-path=PATH
Sets the path in which to look for php.ini,
defaults to PREFIX/lib
--enable-sysvsem Enable System V semaphore(신호로 알리다) support.
--enable-sysvshm Enable the System V shared memory support.
--enable-ftp Enable FTP support
--enable-magic-quotes Enable magic quotes by default.
--enable-ucd-snmp-hack Enable UCD SNMP hack
http://cafe.naver.com/q69.cafe?iframe_url=/ArticleRead.nhn%3Farticleid=9183
: SNMP hack 관련 자료
http://kin.naver.com/db/detail.php?d1id=1&dir_id=10111&eid=t5lgfdBiF2fudP+Z4q+VspWmP26rw/v6
: php option 들 설명한 곳
