Nginx

1.複数ポート
ポート番号9000 9001 9002 9003

2.システム環境
CentOS 6.5 64ビット
nginx1.9.11

3.nginx.conf の設定
s ...

Nginx

1.依存パッケージのインストール
# yum install -y pcre pcre-devel
# yum install -y zlib zlib-devel
# yum install -y opens ...

Nginx

1.nginxのインストール
#sudo apt-get install nginx

2.php7のダウンロード

php7のファイルをダウンロードして解凍する。

操作コマンド:

Nginx

1.pcreのインストール
ダウンロード

インストール手順
# wget
# tar zxvf pcre-8.21.tar.gz
# cd pcre-8.21

Nginx

1.依存ライブラリをインストール
yum install gd-devel libpng-devel zlib-devel

2.webalizerをインストール
# wget
# tar xzf w ...

Nginx

1.サーバ環境
マスター(master)サーバ:192.168.5.87 inotify
スレーブ(slave)サーバ:192.168.6.88 rsync

2.slaveサーバにrsyncをインストール ...

Nginx

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

システム環境:
CentOS5.6_x64
Nginx 1.0.0

ダウンロードURL:
nginx:
Etag:

インストール:
1.Etagをダウンロード
フ ...

Nginx

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

ダウンロード
開発元からダウンロード(tar.gz)
開発元からダウンロード(zip)

更新内容
*) Feature: variables support in the “proxy_ ...

Nginx

設定内容:

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

1.access_log
説明:
access_log path ]];
access_log path format gzip ;
access_log syslog:server=address ...

Nginx

設定内容:
http {
geo $whiteiplist {
default 1;
127.0.0.1 0;
10.0.0.0/8 0;
XXX.XXX.242.0/24 0; ...