nginx安装并支持upstream和tcp代理模块

wget http://nginx.org/download/nginx-1.4.5.tar.gz

tar zxvf nginx-1.4.5.tar.gz

cd nginx-1.4.5

Git clone https://github.com/yaoweibin/nginx_upstream_check_module.git //upstream模块

git clone https://github.com/yaoweibin/nginx_tcp_proxy_module.git //tcp代理模块

yum install patch

patch -p1 <nginx_upstream_check_module/check_1.2.6+.patch

patch -p1 <nginx_tcp_proxy_module/tcp.patch

yum groupinstall "Development tools"

yum -y install pcre-devel openssl openssl-devel

./configure --add-module=nginx_upstream_check_module --add-module=nginx_tcp_proxy_module

make

make install

cp /data/q/sh/conf/nginx /etc/rc.d/init.d/nginx //加入快速启动, nginx脚本在附件

chmod 755 /etc/rc.d/init.d/nginx

cp /data/q/sh/conf/nginx.conf /usr/local/nginx/conf/ //修改nginx的配置, nginx.conf在附件

service nginx start

nginx 配置可参考 https://github.com/yaoweibin/

时间: 2024-10-10 02:29:16

nginx安装并支持upstream和tcp代理模块的相关文章

nginx 安装并支持upstream监控

nginx安装并支持upstream和tcp代理模块 yum groupinstall "Development tools" yum -y install pcre-devel openssl openssl-devel git wget http://nginx.org/download/nginx-1.4.5.tar.gz tar zxvf nginx-1.4.5.tar.gz cd nginx-1.4.5 git clone https://github.com/yaoweib

Nginx安装lua支持

Nginx安装lua支持 需要LuaJIT-2.0.4.tar.gz,ngx_devel_kit,lua-nginx-module 1.下载安装LuaJIT-2.0.4.tar.gz wget -c http://luajit.org/download/LuaJIT-2.0.4.tar.gz tar xzvf LuaJIT-2.0.4.tar.gz cd LuaJIT-2.0.4 make install PREFIX=/usr/local/luajit #注意环境变量! export LUAJ

Let&#39;s Encrypt: 为CentOS/RHEL 7下的nginx安装https支持-具体案例

环境说明: centos 7 nginx 1.10.2 前期准备 软件安装 yum install -y epel-release yum install -y certbot 创建目录及链接 方法1:在网站根目录下创建一个.well-known的目录 方法2: mkdir -p /usr/local/nginx/cert/.well-known ln -s /usr/local/nginx/cert/.well-known /data/www/example.com/.well-known l

nginx tcp代理模块nginx_tcp_proxy_module

nginx tcp代理功能由nginx_tcp_proxy_module模块提供,同时监测后端主机状态.该模块包括的模块有: ngx_tcp_module, ngx_tcp_core_module, ngx_tcp_upstream_module, ngx_tcp_proxy_module, ngx_tcp_upstream_ip_hash_module. 安装 https://github.com/yaoweibin/nginx_tcp_proxy_module/archive/master.

nginx安装https支持

安装软件yum install openssll nginx 在特定目录下生成证书mkdir /usr/share/nginx/confcd /usr/share/nginx/confopenssl genrsa -des3 -out server.key 1024生成服务器端的私钥server.keyopenssl req -new -key server.key -out server.csr生成的csr文件交给CA签名后形成服务端自己的证书,输入证书信息,国家.地区.公司.邮箱等opens

nginx安装、监控、设置反向代理

#监控location /status { stub_status on; access_log off;} #代理 location / { proxy_pass http://10.1.2.170:8081/; proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;} #linux 重新编译./configure --with-http_stub_status_modu

nginx tcp 代理的实现

但在1.90发布后增加了tcp代理模块 所以无需安装 参考:https://docs.nginx.com/nginx/admin-guide/load-balancer/tcp-udp-load-balancer/ 实现方式: stream { server { listen 6379; # ... proxy_pass 10.59.87.121:6379; } } 如果报错:报错1:tcp模块报错] # /data1/env/nginx/sbin/nginx -tnginx: [emerg]

Nginx安装配置|Nginx反向代理|Nginx支持HTTPS|Nginx重定向

Nginx安装配置 可以直接看到最下面的HTTPS. Nginx安装 我的系统如下: No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 16.04.3 LTS Release: 16.04 Codename: xenial 安装(如果有apache服务器, 建议卸载了, 或者改Nginx的默认端口): sudo apt-get install nginx 此时已经开启了80端口, 并且配置处在etc/

nginx TCP 代理&amp; windows傻瓜式安装

一.下载nginx Windows http://nginx.org/en/download.html 二.解压到目录 三.进入目录并start nginx.exe即可启动 cd d:/java/nginx-1.10 start nginx.exe 在windows任务管理器可以看到nginx的进程有两个 输入127.0.0.1访问欢迎页面 四.配置TCP代理 #nginx版本1.10 stream {    upstream proxy_name {        # simple round