FreeBSD での Web 環境の構築
1 MySQL のインストール
ここでは、ソースコードを使用して自分でコンパイルおよびインストールできます。
MySQL-4.0.25 ソースコード パッケージをダウンロードする必要があります。
cd /opt/distfiles
wget xxx
tar -zxvf mysql-4.0.25.tar.gz -C src
cd src/mysql-4.0.25/
./configure ?prefix=/opt/modules/mysql
?enable-assembler
?with-mysqld-ldflags=-all-static
?with-charset=gb2312
?without-debug
make
make install
/opt/modules/mysql/bin/mysql_install_db
chown -R mysql .mysql /opt/modules/mysql/var
chgrp mysql /opt/modules/mysql
2 PHP
をインストールする ./configure
?prefix=/opt/modules/phpcgi
?enable-fastcgi
?enable-force-cgi -redirect
?enable-bcmath
?enable-inline-optimization
?enable-magic-quotes
?enable-wddx?disable-debug
?enable-sysvmsg
?enable-sockets
?enable-mbstring
?enable-calendar
?with-trans-sid
?with-ldap
?with-ldap-sasl
?with-mysql=/opt/modulels/mysql
3 lighttpd をインストールします
cd /usr/ports/www/lighttpd/
make clean をインストールした後
4 統合された構成
4.1 デフォルトの Web サイトファイルパスを変更する
server.document-root = “/opt/data/www/”
#”mod_fastcgi” の # を削除する
#### fastcgi module
## 詳細については fastcgi.txt をお読みください
fastcgi.server = ( “.php” =>
( “localhost” =>
(
“socket” = > “/tmp/php-fastcgi.socket”,
“bin-path” => “/opt/modules/phpcgi/bin/php”,
# ウェブサイトが非常に混雑している場合は、次の設定を追加できます
#”bin -environment” => (
# “PHP_FCGI_CHILDREN” => “16″,
# “PHP_FCGI_MAX_REQUESTS” => “10000″
#)
)))
touch /var/log/lighttpd.error.log
touch /var/log/lighttpd.access.log
chown www:www /var/ log/lighttpd.*
4.5.1 証明書の作成
cd /opt/etc/
openssl req -new -x509 -keyout server.pem -out server.pem -days 365 -nodes
4.5.2 SSL サポートをオンにする
#### SSL エンジン
ssl.engine = “enable”
ssl.pemfile = “/opt/etc/server.pem”
デフォルトのリスニング ポートは次のとおりです。 80、ポートを変更する必要がある場合は、構成設定を変更できます。
## ポートにバインド (デフォルト: 80)
#server.port = 81
5.1 自動起動を設定する
vi /etc/rc.conf
lighttpd_enable=”YES”
5.2 手動起動
/usr/local /etc/rc.d/lighttpd.sh start
/etc/rc.confに/etc/rc.confを追加しないと起動しないので注意してください。したがって、最初に追加する必要があります。