Nginx服務(wù)器如何搭建反向代理

今天小編給大家分享一下Nginx服務(wù)器如何搭建反向代理的相關(guān)知識點,內(nèi)容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。

創(chuàng)新互聯(lián)公司擁有一支富有激情的企業(yè)網(wǎng)站制作團隊,在互聯(lián)網(wǎng)網(wǎng)站建設(shè)行業(yè)深耕10多年,專業(yè)且經(jīng)驗豐富。10多年網(wǎng)站優(yōu)化營銷經(jīng)驗,我們已為千余家中小企業(yè)提供了成都網(wǎng)站制作、做網(wǎng)站解決方案,按需求定制網(wǎng)站,設(shè)計滿意,售后服務(wù)無憂。所有客戶皆提供一年免費網(wǎng)站維護!

第1部分:安裝

1 建立用戶及組

  /usr/sbin/groupadd www 
  /usr/sbin/useradd -g www www

2 安裝pcre 讓nginx反向代理支持rewrite 方便以后所需

  wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-7.8.tar.gz 
  tar zxvf pcre-7.8.tar.gz 
  cd pcre-7.8/ 
  ./configure 
  make && make install

3 安裝nginx反向代理

  wget http://sysoev.ru/nginx/nginx-0.7.58.tar.gz 
  tar zxvf nginx-0.7.58.tar.gz 
  cd nginx-0.7.58/ 
  ./configure --user=www --group=www --prefix=/usr/
  local/webserver/nginx --with-http_stub_status_module 
  --with-http_ssl_module --with-cc-opt='-o2' --with-cpu-opt
  =opteron 
  make && make install

注意上文中的--with-cc-opt='-o2' --with-cpu-opt=opteron 這是編譯器優(yōu)化,目前最常用的是-02 而不是3.后面對應(yīng)cpu的型號。

第2部分:配置及優(yōu)化配置文件

1 nginx.conf 配置文件:

  user www www; 
  worker_processes 4; 
  # [ debug | info | notice | warn | error | crit ] 
  error_log /usr/local/webserver/nginx/logs/nginx_error.log crit; 
  pid /usr/local/webserver/nginx/nginx.pid; 
  #specifies the value for maximum file descriptors that 
  can be opened by this process. 
  worker_rlimit_nofile 51200; 
  events 
  { 
  use epoll; 
  worker_connections 51200; 
  } 
  http 
  { 
  include mime.types; 
  default_type application/octet-stream; 
  source_charset gb2312; 
  server_names_hash_bucket_size 256; 
  client_header_buffer_size 256k; 
  large_client_header_buffers 4 256k; 
  #size limits 
  client_max_body_size 50m; 
  client_body_buffer_size 256k; 
  client_header_timeout 3m; 
  client_body_timeout 3m; 
  send_timeout 3m; 
  #參數(shù)都有所調(diào)整.目的是解決代理過程中出現(xiàn)的一些502 499錯誤  
  sendfile on; 
  tcp_nopush on; 
  keepalive_timeout 120; #參數(shù)加大,以解決做代理時502錯誤 
  tcp_nodelay on; 
  include vhosts/upstream.conf; 
  include vhosts/bbs.linuxtone.conf;  
  }

2 upstream.conf 配置文件(這也是做負載的配置方法

  upstream.conf 
  upstream bbs.linuxtone.com { 
  server 192.168.1.4:8099; 
  }

3 站點配置文件

  bbs.linuxtone.conf 
  server 
  { 
  listen 80; 
  server_name bbs.linuxtone.conf; 
  charset gb2312; 
  index index.html index.htm; 
  root /date/wwwroot/linuxtone/; 
  location ~ ^/nginxstatus/ { 
  stub_status on; 
  access_log off; 
  } 
  location / { 
  root /date/wwwroot/linuxtone/; 
  proxy_redirect off ; 
  proxy_set_header host $host; 
  proxy_set_header x-real-ip $remote_addr; 
  proxy_set_header remote-host $remote_addr; 
  proxy_set_header x-forwarded-for $proxy_add_x_forwarded_for; 
  client_max_body_size 50m; 
  client_body_buffer_size 256k; 
  proxy_connect_timeout 30; 
  proxy_send_timeout 30; 
  proxy_read_timeout 60; 
  proxy_buffer_size 256k; 
  proxy_buffers 4 256k; 
  proxy_busy_buffers_size 256k; 
  proxy_temp_file_write_size 256k; 
  proxy_next_upstream error timeout invalid_header http_500 
  http_503 http_404; 
  proxy_max_temp_file_size 128m; 
  proxy_pass http://bbs.linuxtone.com; 
  }

參數(shù)都有所調(diào)整.目的是解決代理過程中出現(xiàn)的一些502 499錯誤

  #add expires header for static content 
  location ~* \.(jpg|jpeg|gif|png|swf)$ { 
  if (-f $request_filename) { 
  root /date/wwwroot/linuxtone/; 
  expires 1d; 
  break; 
  } 
  } 
  log_format access '$remote_addr - $remote_user [$time_local] "$request" ' 
  '$status $body_bytes_sent "$http_referer" ' 
  '"$http_user_agent" $http_x_forwarded_for'; 
  access_log /exp/nginxlogs/bbs.linuxtone_access.log access; 
  }

常用指令
下面來看一些nginx的反向代理常用指令

proxy_pass指令
語法

  proxy_pass  [url | upstream]

作用
該指令用于設(shè)置被代理服務(wù)器端口或套接字,以及url

proxy_redirect指令
語法

  proxy_redirect  [off | default | redirect replacement]

作用
該指令用于更改被代理服務(wù)器的應(yīng)答header頭中的"location"和"refresh"
補充:
這個命令作用我還沒掌握,實際設(shè)置中都是off的,各位如果有了解的,歡迎博客下留言指導我

proxy_next_upstream指令
語法

復制代碼 代碼如下:

proxy_next_upstream [error|timeout|invalid_header|http_500|http_502|http_503|http_504|http_404|off]

作用
該指令用于設(shè)置當在哪種情況下,將請求轉(zhuǎn)發(fā)到下一臺服務(wù)器。在upstream負載均衡代理服務(wù)器池中,假設(shè)后端的一臺服務(wù)器無法訪問或返回指定錯誤響應(yīng)代碼時,可以使用該指令將請求轉(zhuǎn)發(fā)到池中的下一臺服務(wù)器。
參數(shù)說明

    error : 如果連接服務(wù)器時、發(fā)送請求時、讀取應(yīng)答消息時發(fā)生錯誤 
    timeout : 如果連接服務(wù)器時、傳遞請求時、讀取后端服務(wù)器應(yīng)答消息時超時 
    invalid_header : 后端服務(wù)器返回一個空的或錯誤的應(yīng)答 
    http_[500|502|503|504|404] : 后端服務(wù)器返回指定的應(yīng)答狀態(tài)碼 
    off : 禁止將請求轉(zhuǎn)發(fā)到下一臺后端服務(wù)器 

proxy_set_header指令
語法

  proxy_set_header header value

作用
該指令允許重新定義或添加header行到轉(zhuǎn)發(fā)給被代理服務(wù)器的請求信息中,它的值可以是文本,可以是變量,可以是文本和變量的組合

以上就是“Nginx服務(wù)器如何搭建反向代理”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。

網(wǎng)站標題:Nginx服務(wù)器如何搭建反向代理
URL網(wǎng)址:http://muchs.cn/article42/pipshc.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供自適應(yīng)網(wǎng)站品牌網(wǎng)站建設(shè)、外貿(mào)網(wǎng)站建設(shè)網(wǎng)站排名、商城網(wǎng)站定制網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

小程序開發(fā)