中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

怎么在Nginx中配置反向代理并清除緩存

本篇文章為大家展示了怎么在Nginx中配置反向代理并清除緩存,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。

成都創(chuàng)新互聯(lián)公司堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:做網(wǎng)站、網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的涇川網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!

一. Nginx 配置

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

#user nobody;

worker_processes 1;

 

#error_log logs/error.log;

#error_log logs/error.log notice;

#error_log logs/error.log info;

 

#pid    logs/nginx.pid;

 

 

events {

  worker_connections 1024;

}

 

 

http {

  log_format main '$remote_addr - $remote_user [$time_local] "$request" '

           '$status $body_bytes_sent "$http_referer" '

           '"$http_user_agent" "$http_x_forwarded_for"'

       '$upstream_addr $upstream_status $request_time $upstream_response_time';

 

 

  access_log /var/log/nginx/access.log main;

  error_log  /var/log/nginx/error.log;

 

  server_tokens off;

  include    mime.types;

  default_type application/octet-stream;

  sendfile    on;

  tcp_nopush   on;

  client_max_body_size 10m;

  client_body_buffer_size 128k;

 

  proxy_connect_timeout 300;

  proxy_send_timeout 300;

  proxy_read_timeout 300;

  proxy_buffer_size 64k;

  proxy_buffers 4 512k;

  proxy_busy_buffers_size 512k;

  proxy_temp_file_write_size 512k;

  proxy_temp_path  /data/nginx/proxy_temp;

  proxy_cache_path /data/nginx/proxy_cache levels=1:2 keys_zone=cache_one:2000m inactive=3d max_size=500g;

 

  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;

 

  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;

 

  upstream go {

    server www.cnblogs.com:80 weight=4;

    #server 42.121.252.58:80 weight=4;

  }

 

  server {

 

      listen  192.168.55.133:80;

      #server_name www.cnblogs.com;

      access_log /var/log/nginx/go.access.log main;

      error_log  /var/log/nginx/go.error.log error;

 

 

      location / {

          proxy_cache cache_one;

          #proxy_cache_valid 200 304 301 302 2h;

          #proxy_cache_valid any 2h;

          #expires 1d;

          add_header X-Cache $upstream_cache_status;

          proxy_pass http://go;

          proxy_cache_key  $uri$is_args$args;

      }

 

      location ~ /purge(/.*) {

        allow       127.0.0.1;

        allow       192.168.55.0/24;

        deny        all;

        proxy_cache_purge cache_one $1$is_args$args;

    }

 

  }

}

二. 測(cè)試

1.首次訪問

怎么在Nginx中配置反向代理并清除緩存

 2.刷新一次,也就是第二次訪問

怎么在Nginx中配置反向代理并清除緩存

3.緩存清理

怎么在Nginx中配置反向代理并清除緩存

上述內(nèi)容就是怎么在Nginx中配置反向代理并清除緩存,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。

分享名稱:怎么在Nginx中配置反向代理并清除緩存
文章出自:http://www.rwnh.cn/article34/gsppse.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供外貿(mào)建站、虛擬主機(jī)、App設(shè)計(jì)、電子商務(wù)、App開發(fā)面包屑導(dǎo)航

廣告

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

成都seo排名網(wǎng)站優(yōu)化
福州市| 叙永县| 华蓥市| 稻城县| 盐源县| 垣曲县| 旬阳县| 苍溪县| 巫山县| 北流市| 桐乡市| 丹阳市| 博白县| 尼勒克县| 治县。| 吉木乃县| 贵定县| 宿松县| 闽清县| 墨脱县| 隆化县| 巴马| 津市市| 娱乐| 德清县| 林州市| 大竹县| 连南| 武安市| 昌都县| 临西县| 阳信县| 东海县| 屯昌县| 黎平县| 淮滨县| 盘锦市| 宜川县| 余干县| 大安市| 平阳县|