主頁(yè) > 知識(shí)庫(kù) > 使用nginx設(shè)置代理服務(wù)器

使用nginx設(shè)置代理服務(wù)器

熱門(mén)標(biāo)簽:智能電話(huà)機(jī)器人坐席 云會(huì)外呼系統(tǒng) 外呼系統(tǒng)不彈窗 外呼系統(tǒng)的經(jīng)營(yíng)范圍 廈門(mén)營(yíng)銷(xiāo)外呼系統(tǒng)平臺(tái) 安陽(yáng)ai電銷(xiāo)機(jī)器人軟件 申請(qǐng)400電話(huà)價(jià)格多少 涪陵商都400電話(huà)開(kāi)通辦理 柳州市機(jī)器人外呼系統(tǒng)報(bào)價(jià)

nginx可以利用其反向代理的功能來(lái)進(jìn)行負(fù)載均衡的實(shí)現(xiàn),同時(shí)也可以使用其正向代理的功能設(shè)置代理服務(wù)器,比如在內(nèi)網(wǎng)的環(huán)境中,在可以連接外網(wǎng)的機(jī)器上運(yùn)行nginx作為代理服務(wù)器,其他機(jī)器通過(guò)設(shè)定此臺(tái)機(jī)器的IP和port即可通過(guò)其連接上網(wǎng),本文使用nginx官方鏡像,通過(guò)如下步驟即可簡(jiǎn)單實(shí)現(xiàn)代理服務(wù)器。

Step 1: 啟動(dòng)nginx

[root@devops ~]# docker run -p 8888:8888 --name proxy-nginx -d nginx
c7baab8ea9da0a148aa9bcc1295a54391906f6be94efca7189df23ceecdbf714
[root@devops ~]#

Step 2: 設(shè)定nginx

進(jìn)入容器中

[root@devops ~]# docker exec -it proxy-nginx sh

update apt-get

安裝ping/vi/ps:apt-get update; apt-get install procps vim inetutils-ping

設(shè)定nginx.conf

加入如下內(nèi)容,即可實(shí)現(xiàn)最簡(jiǎn)單的代理功能

  resolver   8.8.8.8;
  server {
    listen 8888;
    location / {
      proxy_pass http://$http_host$request_uri;
    }
  }

其余信息均為nginx.conf的確認(rèn)內(nèi)容,未做修改

# cat nginx.conf
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid    /var/run/nginx.pid;
events {
  worker_connections 1024;
}
http {
  include    /etc/nginx/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 /var/log/nginx/access.log main;
  sendfile    on;
  #tcp_nopush   on;
  keepalive_timeout 65;
  #gzip on;
  resolver   8.8.8.8;
  server {
    listen 8888;
    location / {
      proxy_pass http://$http_host$request_uri;
    }
  }
  include /etc/nginx/conf.d/*.conf;
}
#

Step 4: 設(shè)定客戶(hù)端

在客戶(hù)端設(shè)定服務(wù)器IP和上述的端口8888,即可通過(guò)改代理服務(wù)器連接網(wǎng)絡(luò)。

總結(jié)

以上就是這篇文章的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,謝謝大家對(duì)腳本之家的支持。如果你想了解更多相關(guān)內(nèi)容請(qǐng)查看下面相關(guān)鏈接

標(biāo)簽:撫順 南充 蕪湖 孝感 巴中 晉城 綏化 福州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《使用nginx設(shè)置代理服務(wù)器》,本文關(guān)鍵詞  使用,nginx,設(shè)置,代理,服務(wù)器,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《使用nginx設(shè)置代理服務(wù)器》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于使用nginx設(shè)置代理服務(wù)器的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章