一、简介
Nginx (engine x) 是一个高性能的HTTP和反向代理服务器,也是一个IMAP/POP3/SMTP服务器。【百度百科的介绍】常用的就是反向代里 和 负载均衡
二、homebrew 安装
Nginx的安装,我们这里通过homebrew工具来安装图。关于homebrew能干什么,官网该出的解释为:使用 Homebrew 安装 Apple 没有预装但 你需要的东西。homebrew官网
这里给出安装和卸载命令,至于具体详细教程可以百度一下,这的安装很简单
安装命令:/usr/bin/ruby -e “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)”
卸载命令:ruby -e “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)”
三、Nginx 安装
安装详细步骤可查看寻梦1314的相关博客
四、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;
}
}
}