初識nginx+tomcat

百度百科說:javascript

Nginx ("engine x") 是一個高性能的 HTTP反向代理服務器,也是一個IMAP/POP3/SMTP 服務器。Nginx是由Igor Sysoev爲 俄羅斯訪問量第二的Rambler.ru站點開發的,第一個公開版本0.1.0發佈於2004年10月4日。其將 源代碼以類BSD許可證的形式發佈,因它的穩定性、豐富的功能集、示例配置文件和低系統資源的消耗而 聞名。2011年6月1日,nginx 1.0.4發佈。
Nginx是一款 輕量級Web 服務器/ 反向代理服務器及 電子郵件(IMAP/POP3)代理服務器,並在一個BSD-like 協議下發行。由俄羅斯的程序設計師Igor Sysoev所開發,供俄國大型的入口網站及搜索引擎Rambler(俄文:Рамблер)使用。其特色是佔有內存少, 併發能力強,事實上nginx的併發能力確實在同類型的網頁服務器中表現較好,中國大陸使用nginx網站用戶有:百度、 京東新浪網易騰訊淘寶等。
 
 
貼出完整的配置文件

#運行用戶
#user nobody;
#此參數修改成與CPU個數一致
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;

pid logs/nginx.pid;

#後添的
worker_rlimit_nofile 51200;

events {
#單個後臺worker process進程的最大併發連接數
worker_connections 51200;
}
#設定http服務器,利用它的反向代理功能提供負載均衡支持
http {
#設定mime類型,類型由mime.type文件定義
include mime.types;
default_type application/octet-stream;

#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';

#access_log logs/access.log main;

server_names_hash_bucket_size 128;
client_header_buffer_size 32k;
large_client_header_buffers 4 32k;
php

 

 

#充許客戶端請求的最大單個文件字節數
client_max_body_size 10m;

client_body_buffer_size 128k;

#跟後端服務器鏈接的超時時間 s
proxy_connect_timeout 5;

#鏈接成功後等候後端服務器響應時間
proxy_read_timeout 60;

#後端服務器數據回傳時間
proxy_send_timeout 30;

#代理請求緩存區
proxy_buffer_size 8k;

#同上,保存用幾個buffer每一個最大空間是多少
proxy_buffers 4 32k;

#若是系統很忙時能夠申請更大的proxy_buffers,官方推薦*2
proxy_busy_buffers_size 64k;

#緩存臨時文件的大小
proxy_temp_file_write_size 128k;css


#sendfile 指令指定 nginx 是否調用 sendfile 函數(zero copy 方式)來輸出文件,對於普通應用,
#必須設爲 on,若是用來進行下載等應用磁盤IO重負載應用,可設置爲 off,以平衡磁盤與網絡I/O處理速度,下降系統的uptime.
sendfile on;
#tcp_nopush on;

#鏈接超時時間
#keepalive_timeout 0;
keepalive_timeout 60;html



tcp_nodelay on;
#開啓gzip壓縮
#gzip on;
# gzip_disable "MSIE [1-6]\.(?!.*SV1)";java

#gzip on;
#gzip_min_length 1k;
#gzip_buffers 4 16k;
#gzip_http_version 1.1;
#gzip_comp_level 2;
#gzip_types text/plain application/x-javascript text/css application/xml;
#gzip_vary on; node

 


upstream test_nginx {
#ip_hash;
least_conn; #最少鏈接
server 127.0.0.1:8080 max_fails=2 fail_timeout=30s;
server 192.168.137.128:8080 max_fails=2 fail_timeout=30s ;
}

server {
listen 9999;#監聽的端口號 通常是80端口
server_name test_nginx;

proxy_redirect off;

access_log logs/tset_nginx.log combined;
#charset koi8-r;
#access_log logs/host.access.log main;



location / {
root /root;#定義服務器的默認網站根目錄位置
index index.html index.htm;
proxy_pass http://test_nginx;
proxy_set_header Host $host;
proxy_set_header X-Real-Ip $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}

location /status{
stub_status on;
access_log off;
auth_basic "NginxStatus";
auth_basic_user_file htpasswd;
}nginx

location ~ \.jsp$ {
proxy_pass http://test_nginx;
}

location ~ \.(html|js|css|png|gif)$ {
#root html;
proxy_pass http://test_nginx;後端

# root /var/www/virtual/htdocs;
#過時30天,靜態文件不怎麼更新,過時能夠設大一點,若是頻繁更新,則能夠設置得小一點。
expires 30d;
}

#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 404 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;
#}
}

# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;

# location / {
# root html;
# index index.html index.htm;
# }
#}


# HTTPS server
#
#server {
# listen 443;
# server_name localhost;

# ssl on;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;

# ssl_session_timeout 5m;

# ssl_protocols SSLv2 SSLv3 TLSv1;
# ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
# ssl_prefer_server_ciphers on;

# location / {
# root html;
# index index.html index.htm;
# }
#}

}緩存

經常使用命令 1 開啓nginx: start nginx    2 從新加載配置文件:nginx -s reload 3 關閉nginx  : nginx -s stop 
相關文章
相關標籤/搜索