lighttpd

[トップ][一覧][最近の更新]

lighttpd自分用メモ。

自分が動かして調べた事を書く。

まだ書きかけ。


目的

インストールについて

wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-6.4.tar.gz
tar xvfz pcre-6.4.tar.gz
cd pcre-6.4
CFLAGS="-Os -march=i686" ./configure --prefix=/usr --enable-utf8
nice make all check
su
make install
bash
export VERSION=1.4.5
wget http://www.lighttpd.net/download/lighttpd-${VERSION}.tar.gz
echo f2e16caf782b9fc8df634b1ea65b7645 &&
openssl md5 < lighttpd-${VERSION}.tar.gz
tar xvfz lighttpd-${VERSION}.tar.gz
cd lighttpd-${VERSION}
CFLAGS="-O2 -march=pentium4" ./configure \
--prefix=/usr/local/lighttpd-${VERSION} \
--disable-ipv6 \
--without-mysql \
--without-ldap \
--without-attr \
--without-valgrind \
--without-openssl \
--with-pcre \
--with-bzip2 \
--without-webdav-props \
--without-gdbm \
--without-memcache \
--without-lua
nice make all check
su
make install
rm -f /usr/local/lighttpd
ln -sf lighttpd-${VERSION} /usr/local/lighttpd

続く……

メモ

結論


最終更新 : 2006/03/05 15:09:27 JST