6 nginx 配置 tomcat集群

2022-02-02 14:34:28 字數 654 閱讀 1619

1.在nginx.conf中的server{}節點上面新增

#和 sever節點同級   

include ttt/*.conf;

2.在nginx.conf 同級建立ttt目錄,裡面新增aslan.conf配置檔案
upstream www.aslan.com

server

}

3.檢查nginx配置檔案是否有問題
root@ubuntuserver:/usr/local/nginx/sbin# ./nginx -t

nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok

nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful

4.重啟nginx
root@ubuntuserver:/usr/local/nginx/sbin# ./nginx -s reload

root@ubuntuserver:/usr/local/nginx/sbin#

5.訪問nginx
負載均衡沒問題

6 nginx負載均衡

mkdir p server tools cd server tools wget 從其他機器拷貝過來 scp nginx 1.18.0.tar.gz 172.16.1.5 server tools 2 安裝依賴 yum install pcre pcre devel y yum install o...

6 Nginx效能引數調優

1.worker processes語法 worker processes number auto number nginx程序最多可以產生的工作程序數量 auto nginx程序將自動檢測nginx伺服器實現併發處理服務的關鍵。每個worker程序都是單執行緒的程序,它們會呼叫各個模組以實現多種多...

6 Nginx瀏覽器快取原理

key value 說明cache control max age 0 客戶端向伺服器端表明,如果快取過期了,但是過期時間還沒有超過指定時間 以秒為單位 則直接返回304即可。if modified since wed,09 aug 2017 10 28 55 gmt 根據修改時間來判斷檔案是否修改...