Windowsでnginx逆プロキシtomcatを構成する
4029 ワード
Nginxは公式アドレスをダウンロードします:http://nginx.org/en/download.htmlダウンロード後に解凍されたディレクトリ構造は、nginx-v nginxバージョンstart nginxを表示nginxコマンドnginx-s reloadプロファイルを変更してreload nginx-s stopを変更するとすぐにnginx-s quitを停止し優雅に起動を停止成功した後、ブラウザを開いてlocalhost:80ポートを入力し、次のウェルカムページは、構成に問題がなく起動に成功したことを示しています.例:Nginxデフォルトポートは80であり、nginxを介してプロキシバックエンドのポートを8080のtomcatに反転すると仮定し、以下のように構成される.
構成の説明:Hostはクライアントの本当のドメイン名とポート番号X-Real-IPクライアントの本当のipアドレスX-Forwarded-Forを含んでクライアントの本当のipと中間の経歴の多層のエージェントのipセットX-Forwarded-Protoを記録してクライアントの本当のプロトコル(httpそれともhttps)proxy_を表しますpassエージェントのtomcatのアドレス(ip+ポートまたはドメイン名)
server {
listen 80; //
server_name 192.168.0.238; //server
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://127.0.0.1:8080;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
構成の説明:Hostはクライアントの本当のドメイン名とポート番号X-Real-IPクライアントの本当のipアドレスX-Forwarded-Forを含んでクライアントの本当のipと中間の経歴の多層のエージェントのipセットX-Forwarded-Protoを記録してクライアントの本当のプロトコル(httpそれともhttps)proxy_を表しますpassエージェントのtomcatのアドレス(ip+ポートまたはドメイン名)