投稿者「23」のアーカイブ

最適化 lighttpd 設定 Raspberry Pi

最適化 lighttpd 設定 Raspberry Pi
/etc/lighttpd/lighttpd.conf
server.max-keep-alive-requests = 4 #OK
server.max-keep-alive-idle = 4 #OK
server.max-fds = 16 #OK

ssl.read-ahead = “disable” #NG 検証結果 サイトが表示されない場合あり
server.stream-response-body = 2 #checking

#検証中、値調整中

インストール nginx Webサーバー Raspberry Pi

インストール nginx Webサーバー Raspberry Pi
$ sudo apt install nginx
$ nginx -V #バージョン確認 1.14.2

ブラウザーでアクセスOK(OS再起動不要、OS再起動してもnginxは自動起動している)

index.html のディレクトリーを指定している設定を調べる
nginx.conf > include /etc/nginx/sites-enabled/*;
/etc/nginx/sites-enabled/@default > root /var/www/html;

$ sudo nginx -t #変更した設定をチェックする
$ sudo nginx -s reload #変更した設定を再読込(再起動なしに反映される)

#問題点、nginxが/var/log/nginx へのアクセスに固執しそれを回避できない、ログを無効にできない、ログディレクトリーをRAMdiskにできない。
$ sudo apt purge nginx -y #削除、設定も
$ sudo apt autoremove -y