lighttpd+php+mysql+openssl

WBOY
リリース: 2016-06-23 14:36:20
オリジナル
1008 人が閲覧しました

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 をインストールした後

実行後、いくつかのオプションが表示されます。OPENSSL を選択するだけで、他のオプションを選択する必要はありません。

4 統合された構成

4.1 デフォルトの Web サイトファイルパスを変更する

server.document-root = “/opt/data/www/”

4.2 fastcgi モジュールサポートをオンにする

#”mod_fastcgi” の # を削除する

4.3 カスタマイズされた PHP サポートを設定します

#### 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″
#)

#”bin-path” => “/usr /local/ bin/php”

)))

4.4 ログファイルの作成と権限の設定

touch /var/log/lighttpd.error.log

touch /var/log/lighttpd.access.log
chown www:www /var/ log/lighttpd.*

4.5 SSL サポートの設定

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”

4.6 リスニング ポートを設定する

デフォルトのリスニング ポートは次のとおりです。 80、ポートを変更する必要がある場合は、構成設定を変更できます。
## ポートにバインド (デフォルト: 80)
#server.port = 81

5 起動

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を追加しないと起動しないので注意してください。したがって、最初に追加する必要があります。

関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート