文章詳情頁
CentOS?7.6安裝與Nginx的配置文件詳解
瀏覽:2日期:2023-07-16 19:50:29
目錄一、安裝Nginx需要的環境庫二、安裝Ngnix三、啟動Nginx四、介紹一下Nginx命令五、介紹一下Nginx的配置六 ngxin負載均衡一、安裝Nginx需要的環境庫注:所有命令均在root權限下執行項目首先我們需要安裝gcc、gcc-c++、zlib、pcre 和openssl。安裝gcc gcc-c++;yum install -y gcc gcc-c++下載安裝pcre; cd /usr/local/ wget http://downloads.sourceforge.net/project/pcre/pcre/8.45/pcre-8.45.tar.gz tar -zxvf pcre-8.45.tar.gz cd pcre-8.45 ./configure make && make install下載安裝openssl; cd /usr/local/ wget https://www.openssl.org/source/openssl-1.1.1t.tar.gz --no-check-certificate tar -zxvf openssl-1.1.1t.tar.gz cd openssl-1.1.1t ./config make && make install
注:wget https://www.openssl.org/source/openssl-1.1.1t.tar.gz 后面記得一定加上–no-check-certificate,不然要報錯。顯示www.openssl.org上頒發的證書已經過期無法驗證,手動狗頭。
報錯圖片如下:
測試一下nginx,從別臺機器訪問一下服務器的IP,出現“Welcome to nginx!”頁面就說明成功了;如果訪問不到頁面但是可以ping通服務器的話可能是開啟了防火墻,關閉就行。關閉防火墻
關閉防火墻開機自啟
systemctl disable firewalld.service四、介紹一下Nginx命令啟動nginx服務/usr/local/nginx/sbin/nginx重啟nginx服務/usr/local/nginx/sbin/nginx –s reload停止nginx服務/usr/local/nginx/sbin/nginx –s stop強制關閉nginx服務pkill nginx五、介紹一下Nginx的配置nginx.conf配置文件介紹#nginx配置#user nobody;worker_processes 1; #服務器并發處理服務關鍵配置#error_log logs/error.log;#error_log logs/error.log notice;#error_log logs/error.log info;#pidlogs/nginx.pid;events { worker_connections 1024; #最大連接數為 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''; include mime.types; default_type application/octet-stream; sendfileon; tcp_nopush on; keepalive_timeout 65; #gzip on; #http頭壓縮 #正向代理配置 server { listen 8080; # 代理監聽端口resolver 114.114.114.114; #代理DNS配置#charset koi8-r;access_log /home/lich/logs/fproxy.access.log; #accesslog輸出路徑error_log /home/lich/logs/fproxy.error.log; #errorlog輸出路徑location / { proxy_pass $scheme://$host$request_uri; # 配置正向代理參數 proxy_set_header Host $http_host; # 解決如果URL中帶'.'后Nginx 503錯誤 proxy_buffers 256 4k; # 配置緩存大小 proxy_max_temp_file_size 0; # 關閉磁盤緩存讀寫減少I/O proxy_connect_timeout 30; # 代理連接超時時間 # 配置代理服務器HTTP狀態緩存時間 proxy_cache_valid 200 302 10m; proxy_cache_valid 301 1h; proxy_cache_valid any 1m;} } #反向代理配置 server {listen 80;server_name test.test.com; #代理轉發域名配置access_log /home/lich/logs/rproxy.access.log;error_log /home/lich/logs/rproxy.error.log;location / { proxy_pass http://172.16.113.1:8001; #代理到后段實際應用服務器地址 index index.html index.htm index.jsp;}#error_page 404 /404.html;# redirect server error pages to the static page /50x.htmlerror_page 500 502 503 504 /50x.html;location = /50x.html { root html;} }}監聽配置用法listen *:80 | *:8080#監聽所有80端口和8080端口listen IP_address:port #監聽指定的地址和端口號listen IP_address #監聽指定ip地址所有端口listen port #監聽該端口的所有IP連接server_name:基于名稱的虛擬主機配置語法格式如下:# server_name name ...;對于name 來說,可以只有一個名稱,也可以有多個名稱,中間用空格隔開。而每個名字由兩段或者三段組成,每段之間用“.”隔開。server_name test.com www.test.com可以使用通配符“*”,但通配符只能用在由三段字符組成的首段或者尾端,或者由兩端字符組成的尾端。server_name *.test.com www.test.*還可以使用正則表達式,用“~”作為正則表達式字符串的開始標記。server_name ~^www\d+\.test\.com$;server_name:基于IP地址的虛擬主機配置#語法結構和基于域名匹配一樣,而且不需要考慮通配符和正則表達式的問題。
server_name 192.168.1.1proxy_pass該指令用于設置被代理服務器的地址。可以是主機名稱、IP地址加端口號的形式
# proxy_pass URL;# URL 為被代理服務器的地址,可以包含傳輸協議、主機名稱或IP地址加端口號,URI等。proxy_pass http://www.test.com/uri;index該指令用于設置網站的默認首頁。
#index filename ...;#后面的文件名稱可以有多個,中間用空格隔開。index index.html index.jsp;六 ngxin負載均衡輪詢算法負載均衡upstream OrdinaryPolling { server 172.16.113.1:8081; server 172.16.113.1:8082;}server {listen 80; server_name test.test.com;access_log /home/lich/logs/rproxy_slb.access.log;error_log /home/lich/logs/rproxy_slb.error.log;location / { proxy_pass http://OrdinaryPolling; index index.html index.htm index.jsp; # deny ip # allow ip}}基于比例加權輪詢負載均衡upstream OrdinaryPolling { server 172.16.113.1:8081 weight=2; server 172.16.113.1:8082 weight=5;}server {listen 80; server_name test.test.com;access_log /home/lich/logs/rproxy_slb.access.log;error_log /home/lich/logs/rproxy_slb.error.log;location / { proxy_pass http://OrdinaryPolling; # index index.html index.htm index.jsp; # deny ip # allow ip}}基于IP路由負載均衡在 upstream 指令塊中增加了ip_hash 指令。該指令就是告訴 nginx 服務器,同一個 IP 地址客戶端發送的請求都將分發到同一個 Tomcat 服務器進行處理。
upstream OrdinaryPolling { server 172.16.113.1:8081 weight=2; server 172.16.113.1:8082 weight=5; ip_hash;}server {listen 80; server_name test.test.com;access_log /home/lich/logs/rproxy_slb.access.log;error_log /home/lich/logs/rproxy_slb.error.log;location / { proxy_pass http://OrdinaryPolling; # index index.html index.htm index.jsp; # deny ip # allow ip}}基于服務器響應時間負載均衡根據服務器處理請求的時間來進行負載,處理請求越快,也就是響應時間越短的優先分配。
upstream OrdinaryPolling { server 172.16.113.1:8081 weight=2; server 172.16.113.1:8082 weight=5; fair;}server {listen 80; server_name test.test.com;access_log /home/lich/logs/rproxy_slb.access.log;error_log /home/lich/logs/rproxy_slb.error.log;location / { proxy_pass http://OrdinaryPolling; # index index.html index.htm index.jsp; # deny ip # allow ip}}到此這篇關于CentOS 7.6安裝Nginx及配置文件詳解的文章就介紹到這了,更多相關CentOS 7.6安裝Nginx及配置文件詳解內容請搜索好吧啦網以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持好吧啦網!
相關文章:
排行榜
