Nginx搭建及使用
阿新 • • 發佈:2019-01-23
一、簡介
Nginx (engine x) 是一個高效能的HTTP和反向代理伺服器,也是一個IMAP/POP3/SMTP伺服器。【百度百科的介紹】常用的就是反向代裡 和 負載均衡
二、homebrew 安裝
三、Nginx 安裝
四、Nginx 常用命令
啟動:nginx
重啟:nginx -s reload
停止:nginx -s qust【有日誌】或者nginx -s stop【無日誌】
五、反向代理配置
修改/usr/local/etc/nginx/nginx.conf,在nginx.conf中配置需要代理的地址,語法如下:
server{
listen [你要監聽的埠號];
server_name [你要監聽的域名/IP];
location / {
proxy_pass [代理的目標地址];
}
}
示例如下:
server{
listen 8090;
server_name 127.0.0.1;
location / {
proxy_pass httP://127.0.0.1:8081;
}
}
需要注意的是,配置成功都需要重啟nginx才可生效。這裡代理了本地8081訪問地址,本地8081埠的專案啟動後,可以使用127.0.0.1:8090/XXX 來訪問
六、負載均衡配置
html {
..........
# 負載均衡
upstream loadBalancing {
server 192.168.0.112:8081 weight=1;
server 127.0.0.1:8081 weight=2;
}
server{
listen 8085;
server_name localhost;
location / {
proxy_pass http://loadBalancing;
}
}
}
weight值遇到,表示權重越高,被分配的機率就越高。專案啟動後,本地訪問localhost:8085/XXX的時候,nginx會分發到 loadBalancing 中的兩臺伺服器中的tomcat
七、其他內容
1. naginx.conf內容介紹
1.1 原始碼如下
#定義Nginx執行的使用者和使用者組,來指定Nginx Worker程序執行使用者以及使用者組,預設由nobody賬號執行
#user nobody;
#nginx程序數,建議設定為等於CPU總核心數。
worker_processes 1;
#全域性錯誤日誌定義型別,[ debug | info | notice | warn | error | crit ],其中debug輸出日誌最為最詳細,而crit輸出日誌最少
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#程序檔案,用來指定程序id的儲存檔案位置
#pid logs/nginx.pid;
#工作模式與連線數上限
events {
#受Linux系統程序的最大開啟檔案數限制,在執行作業系統命令“ulimit -n 65536”後worker_connections的設定才能生效
worker_connections 1024;
}
#設定http伺服器
http {
#來用設定檔案的mime型別,型別在配置檔案目錄下的mime.type檔案定義,來告訴nginx來識別檔案型別。
include mime.types;
default_type application/octet-stream;#預設檔案型別
#用於設定日誌的格式,和記錄哪些引數,這裡設定為main,剛好用於access_log來紀錄這種型別
#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;
#開啟高效檔案傳輸模式,sendfile指令指定nginx是否呼叫sendfile函式來輸出檔案,對於普通應用設為 on,如果用來進行下載等應用磁碟IO重負載應用,可設定為off,以平衡磁碟與網路I/O處理速度,降低系統的負載。注意:如果圖片顯示不正常把這個改成off。
sendfile on;
#tcp_nopush on;#防止網路阻塞
#keepalive_timeout 0;
keepalive_timeout 65;#長連線超時時間,單位是秒
#gzip on;#開啟gzip壓縮輸出
#虛擬主機的配置
server {
listen 8080;#監聽埠
server_name localhost;#域名可以有多個,用空格隔開
#charset koi8-r;#預設編碼
#access_log logs/host.access.log main;
#表示在這整個server虛擬主機內,全部的root web根目錄。注意要和locate {}下面定義的區分開來root /data/www/***;
location / {
root html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
include servers/*;
server{
listen 8090;
server_name 127.0.0.1;
location / {
proxy_pass httP://127.0.0.1:8081;
}
}
}