91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在nginx中解決cookie跨域訪問問題

發布時間:2021-03-09 15:37:53 來源:億速云 閱讀:595 作者:Leah 欄目:服務器

怎么在nginx中解決cookie跨域訪問問題?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

1

nginx: [emerg] unknown directive "aio" in

加上--with-file-aio 

復制代碼 代碼如下:

Starting nginx: nginx: [emerg] the INET6 sockets are not supported on this platform in “[::]:80” of the

在后面加上--with-ipv6好使。

安裝完成后。主要是nginx.conf的配置

原來服務器的配置nginx.conf:

?

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

# For more information on configuration, see:

#  * Official English Documentation: http://nginx.org/en/docs/

#  * Official Russian Documentation: http://nginx.org/ru/docs/

 

user root;

worker_processes 2;

worker_cpu_affinity 1000 0100;

error_log logs/error.log;

pid logs/nginx.pid;

 

 

events {

  worker_connections 2048;

}

 

http {

  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;

 

  gzip on;

  gzip_min_length 1000;

  gzip_buffers   4 8k;

  gzip_types    text/plain application/javascript application/x-javascript text/css application/xml;

 

  client_max_body_size 8M;

  client_body_buffer_size 128k;

 

  sendfile      on;

  tcp_nopush     on;

  tcp_nodelay     on;

  keepalive_timeout  65;

  types_hash_max_size 2048;

 

  include       mime.types;

  default_type    application/octet-stream;

 

  connection_pool_size 512;

  aio on;

  open_file_cache max=1000 inactive=20s;

 

  # Load modular configuration files from the /etc/nginx/conf.d directory.

  # See http://nginx.org/en/docs/ngx_core_module.html#include

  # for more information.

  #  主要配置在這里,nginx.conf配置都是一樣

  include /usr/local/nginx/conf/conf.d/*.conf;

 

  server {

    listen    80 default_server;

    listen [::]:80 ipv6only=on default_server;

    server_name _;

    root     html;

 

    # Load configuration files for the default server block.

    include /usr/local/nginx/conf/default.d/*.conf;

 

    location / {

    }

 

    error_page 404 /404.html;

      location = /40x.html {

    }

 

    error_page 500 502 503 504 /50x.html;

      location = /50x.html {

    }

  }

}

原來服務器的
conf.d/*.conf的配置是reverse-proxy.conf

?

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

server

{

  listen 80;

  server_name m.abc.com.cn;

  location / {

    root  /usr/share/nginx/html/;

    index index.html index.htm;

  }

  location ~ .(jsp|do)?$ {

    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_pass http://localhost:8084;

  }

  if ($http_user_agent ~* "qihoobot|Baiduspider|Googlebot|Googlebot-Mobile|Googlebot-Image|Mediapartners-Google|Adsbot-Google|Feedfetcher-Google|Yahoo! Slurp|Yahoo! Slurp China|YoudaoBot|Sosospider|Sogou spider|Sogou web spider|MSNBot|ia_archiver|Tomato Bot") {

        return 403;

    }

  access_log /home/logs/nginx/m.abc.com.cn_access.log;

}

 

server

{

  listen 80;

  server_name store.abc.com.cn *.store.abc.com.cn;

  location / {

    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_pass http://localhost:8081;

  }

  access_log /home/logs/nginx/store.abc.com.cn_access.log;

}

 

server

{

  listen 80;

  server_name shopcenter.abc.com.cn;

  location / {

    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_pass http://10.45.100.222:8082;

  }

  access_log /home/logs/nginx/shopcenter.abc.com.cn_access.log;

}

 

server

{

  listen 80;

  server_name search.abc.com.cn;

  location / {

    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_pass http://10.45.100.68:8083;

  }

  access_log /home/logs/nginx/search.abc.com.cn_access.log;

}

以上配置后,nginx啟動后,通過訪問不同的域名來訪問不同服務器。而因為都有二級域名.abc.com.cn。所以可以共享cookie。

nginx的文件結構為:

怎么在nginx中解決cookie跨域訪問問題

三、修改后的nginx配置

主要是reverse-proxy.conf 不同

?

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

89

90

91

92

93

94

95

96

97

98

server

{

  listen 9998;

  server_name 192.168.0.1:9998;

  location /servlets/ {

    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_pass http://192.168.0.1:8088;

  }

  location / {

 

    root  /usr/local/nginx/html/web/;

    index index.html index.htm;

  }

  location ~ .(jsp|do)?$ {

    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_pass http://192.168.0.1:8088;

    

    proxy_http_version 1.1;

    proxy_set_header Upgrade $http_upgrade;

    proxy_set_header Connection "upgrade";

    proxy_read_timeout  700s;

  }

if ($http_user_agent ~* "qihoobot|Baiduspider|Googlebot|Googlebot-Mobile|Googlebot-Image|Mediapartners-Google|Adsbot-Google|Feedfetcher-Google|Yahoo! Slurp|Yahoo! Slurp China|YoudaoBot|Sosospider|Sogou spider|Sogou web spider|MSNBot|ia_archiver|Tomato Bot") {

        return 403;

    }

  access_log /usr/local/nginx/logs/www.abc.com.cn_access.log;

}

 

server

{

  listen 9994;

  server_name 192.168.0.1:9994;

  location / {

   proxy_redirect off;

 

    root  /usr/local/nginx/html/weixin/;

    index index.html index.htm;

  }

  location ~ .(jsp|do)?$ {

    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_pass http://localhost:8084;

  }

  if ($http_user_agent ~* "qihoobot|Baiduspider|Googlebot|Googlebot-Mobile|Googlebot-Image|Mediapartners-Google|Adsbot-Google|Feedfetcher-Google|Yahoo! Slurp|Yahoo! Slurp China|YoudaoBot|Sosospider|Sogou spider|Sogou web spider|MSNBot|ia_archiver|Tomato Bot") {

        return 403;

    }

  access_log /usr/local/nginx/logs/m.abc.com.cn_access.log;

}

 

server

{

  listen 9990;

  server_name store.abc.com.cn *.store.abc.com.cn;

  location / {

    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_pass http://localhost:8081;

  }

  access_log /usr/local/nginx/logs/store.abc.com.cn_access.log;

}

 

server

{

  listen 9992;

  server_name 192.168.0.1:9992;

  location / {

    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_pass http://192.168.0.2:8082;

  }

  access_log /usr/local/nginx/logs/shopcenter.abc.com.cn_access.log;

}

 

server

{

  listen 9993;

  server_name 192.168.0.1:9993;

  location / {

    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_pass http://192.168.0.3:8083;

  }

  access_log /usr/local/nginx/logs/search.abc.com.cn_access.log;

}

 這樣就可以把192.168.0.1:9998 當做單點服務器,登錄后的domain都為192.168.0.1 。其他的0.2、0.3都可以通過192.168.0.1nginx和單點服務器的不同端口訪問,那么就可以共享這個0.1的域名了。

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

http://www.cnblogs.com/minzhousblogs/p/9023391.html

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

台南市| 奎屯市| 若尔盖县| 治多县| 襄城县| 斗六市| 旬邑县| 天祝| 普定县| 洞头县| 勃利县| 衡水市| 乳源| 西林县| 惠来县| 吴江市| 康保县| 长岛县| 纳雍县| 赣榆县| 涞水县| 津南区| 大竹县| 道真| 绍兴市| 武功县| 彩票| 白山市| 汉寿县| 娱乐| 西贡区| 芜湖市| 枝江市| 琼结县| 乐东| 彭山县| 咸丰县| 肥城市| 寻乌县| 车险| 扎赉特旗|