# worker 進程數(shù),ngin 有主從之分,worker主要負責(zé)工作,使用ps -ef|grep woker 可以看到
worker_processes 1;
# 每個worker的連接數(shù)
events {
worker_connections 1024;
}
http {
# 包含的子配置
include mime.types;
# mime.type 配置了各種請求類型,如果無法匹配使用 default_type
default_type application/octet-stream;
# 數(shù)據(jù)零拷貝,nginx 把 文件 直接通過linux 返回給客戶端
sendfile on;
# 連接超時時間
keepalive_timeout 65;
# vhost
server {
listen 80;
server_name localhost;
location / {
root html;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
}
域名解析
常用解析多租戶解析Nginx虛擬主機域名配置worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name www.lindou.top;
location / {
root /www/www;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
server {
listen 80;
server_name vod.lindou.top;
location / {
root /www/vod;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
}
ServerName匹配規(guī)則配合二級域名
完整匹配通配符匹配server_name vod1.lindou.top vod1.lindou.top;
通配符結(jié)束匹配server_name *.lindou.top;
正則匹配server_name vod.lindou.*;
隧道式模型、網(wǎng)關(guān)、代理 正向代理&反向代理網(wǎng)關(guān)server_name ~^[0-9]+.lindou.com$;
中轉(zhuǎn)作用
隧道式模式:就是nginx反向代理模式,入口走nginx,出口也走nginx
lvs,DR模式:入口走nginx,出口直接返回到內(nèi)網(wǎng)網(wǎng)關(guān)上
使用 proxy_pass ,下面兩行就無用了
server {
listen 80;
server_name vod.lindou.top;
location / {
proxy_pass http://www.atguigu.com;
# root /www/vod;
# index index.html index.htm;
}
反向代理多臺服務(wù)器使用 upstream httpds
upstream httpds{
server 192.168.102.80;
server 192.168.103.80;
}
server {
listen 80;
server_name vod.lindou.top;
location / {
proxy_pass http://httpds;
# root /www/vod;
# index index.html index.htm;
}
負載均衡策略默認輪詢
以下了解,生產(chǎn)存在問題
weight權(quán)重
down不參與負載均衡
backup備用機(正常不參與負載均衡)
將靜態(tài)文件放在nginx上
兩者等價
URLRewrite偽靜態(tài)配置訪問:http://localhost/test/2.html 會轉(zhuǎn)到 http://localhost/test/index.jsp?pageNum=2
通用配置
使用keepalived配置nginx高可用
主:192.168.10.190
備:192.168.10.191
v:192.168.10.200
yum install openssl-devel
yum install keepalived
配置在: /etc/keepalived/keepalived.conf
2. 主配置
主要修改上邊這部分
! Configuration File for keepalived
global_defs {
router_id lb191
}
vrrp_instance VI_1 {
state MASTER
interface ens33
virtual_router_id 51
priority 100
advert_int 1
authentication {
auth_type PASS
auth_pass 1111
}
virtual_ipaddress {
192.168.10.200
}
}
! Configuration File for keepalived
global_defs {
router_id lb190
}
vrrp_instance VI_1 {
state BACKUP
interface ens33
virtual_router_id 51
priority 100
advert_int 1
authentication {
auth_type PASS
auth_pass 1111
}
virtual_ipaddress {
192.168.10.200
}
}
你是否還在尋找穩(wěn)定的海外服務(wù)器提供商?創(chuàng)新互聯(lián)www.cdcxhl.cn海外機房具備T級流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確流量調(diào)度確保服務(wù)器高可用性,企業(yè)級服務(wù)器適合批量采購,新人活動首月15元起,快前往官網(wǎng)查看詳情吧
分享文章:nginx基礎(chǔ)篇-創(chuàng)新互聯(lián)
瀏覽路徑:http://aaarwkj.com/article34/ccccse.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站設(shè)計公司、搜索引擎優(yōu)化、虛擬主機、網(wǎng)站內(nèi)鏈、服務(wù)器托管、Google
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容