nginxで複数ポート(9000、9001、9002、9003)を起動する方法
1.複数ポート
ポート番号9000 9001 9002 9003
2.システム環境
CentOS 6.5 64ビット
nginx1.9.11
3.nginx.conf の設定
s ...
CentOSにnginx1.7.3をイソースコードからンストールする手順
1.依存パッケージのインストール
# yum install -y pcre pcre-devel
# yum install -y zlib zlib-devel
# yum install -y opens ...
Ubuntu14.04にnginxとPHP7をインストールメモ
1.nginxのインストール
#sudo apt-get install nginx
2.php7のダウンロード
php7のファイルをダウンロードして解凍する。
操作コマンド:
Linuxでnginx1.2.9インストール、起動停止方法と./configure項目整理
1.pcreのインストール
ダウンロード
インストール手順
# wget
# tar zxvf pcre-8.21.tar.gz
# cd pcre-8.21
Linuxでwebalizerをインストールしてnginxとapacheログを解析
1.依存ライブラリをインストール
yum install gd-devel libpng-devel zlib-devel
2.webalizerをインストール
# wget
# tar xzf w ...
rsync+inotifyでHPリソースを自動的にバックアップする
1.サーバ環境
マスター(master)サーバ:192.168.5.87 inotify
スレーブ(slave)サーバ:192.168.6.88 rsync
2.slaveサーバにrsyncをインストール ...
「nginx」ngx_http_upstream_consistent_hashジュールをインストール、配置方法
1.インストール
# wget
# unzip master.zip
# ./configure –add-module=./3thparty/ngx_http_consistent_hash-ma ...
nginxで帯域制限をする方法メモ
方法1
http{
limit_zone one $binary_remote_addr 10m;
limit_conn one 5;
# limit_req_zone $binary_remote_a ...
nginxにetagモジュールを付ける方法
システム環境:
CentOS5.6_x64
Nginx 1.0.0
ダウンロードURL:
nginx:
Etag:
インストール:
1.Etagをダウンロード
フ ...
「nginx学習」ngx_http_autoindex_moduleを利用してディレクトリファイルリストを有効する方法
1.ファイル:
nginx.conf
2.設定内容:
http {
include mime.types;
default_type application/octet-stream; ...
nginxでバーチャルホストを設定する方法
1.2つの仮想サーバ
設定内容:
http {
index index.html;
server {
server_name www.domain1.com;
access_log ...
nginxでサーバ負荷分散を設定するサンプルコード
1.負荷分散
①
負荷分散:192.168.1.2:80、192.168.1.3:80、192.168.1.4:80、192.168.1.5:804台サーバ
②
負荷分散:192.168.1.7の8 ...
nginxでファイルアップロードサイズを設定する方法
1.設定ファイルphp.ini
パラメータ:
post_max_size
upload_max_filesize
2.設定ファイルnginx.conf
パラメータ
client_ma ...
Nginx 1.7.9 ダウンロード
ダウンロード
開発元からダウンロード(tar.gz)
開発元からダウンロード(zip)
更新内容
*) Feature: variables support in the “proxy_ ...
nginx 301リダイレクトする方法
設定内容:
server {
server_name arkgame.com;
if ($host != ‘www.arkgame.com’) {
rewrite ^/(.* ...
nginxでロードバランシングの設定サンプル
1.システム要件:
システム負荷ロードバランシングサーバ(PA)
www.mydomain.com(Global network)
192.168.2.20(Private network)
Web ...
nginxログ(access_log、log_format、open_log_file_cache、log_not_found、log_subrequest)設定方法
1.access_log
説明:
access_log path ]];
access_log path format gzip ;
access_log syslog:server=address ...
nginxでホワイストIPリストアドレス制限を設定する
設定内容:
http {
geo $whiteiplist {
default 1;
127.0.0.1 0;
10.0.0.0/8 0;
XXX.XXX.242.0/24 0; ...