亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

nginx https通信的隨機數怎么生成的?

nginx https通信的隨機數怎么生成的?

12345678_0001 2018-11-23 19:15:38
nginx https通信的隨機數怎么生成的
查看完整描述

1 回答

?
狐的傳說

TA貢獻1804條經驗 獲得超3個贊

#配置負載均衡服務器(采用IP Hash算法,相同客戶IP會轉發到相同服務器)
upstream backendServermall80
{
ip_hash;
server 192.168.10.91:8080;
}

server
{
#設置監聽端口
listen 80;

#設置服務器域名(IP訪問和多域名訪問可不設置)
#server_name _*;
server_name
rewrite ^(.*$) permanent;

#開啟shtml支持
ssi on;
ssi_silent_errors on;
ssi_types text/shtml;

#設置主訪問日志
#access_log logs/access.log main;
access_log /dev/null;

error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;

#設置轉發到后端服務器的URL(正則表達式)
#location ~ (^/(cgi-bin|servlet|chart)/|\.jsp$)
#{
# proxy_pass
# include proxy.conf;
# }

#設置監控nginx狀態URL
location /__nginxstatus
{
stub_status on;
access_log off;
}

#全部請求轉發到后端服務器的設置
location /
{
proxy_pass
include proxy.conf;
}

}



查看完整回答
反對 回復 2018-12-13
  • 1 回答
  • 0 關注
  • 1554 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號