Nginx

 

 

1◆ nginx install

  1. 源码:https://trac.nginx.org/nginx/browser
  2.  
  3. 官网:http://www.nginx.org/

 

 

 

=====>安装编译工具及库文件

yum -y install make zlib zlib-devel gcc-c++ libtool  openssl openssl-devel

 

 

=====>下载 PCRE 安装包

wget http://downloads.sourceforge.net/project/pcre/pcre/8.35/pcre-8.35.tar.gz

 

=====>解压安装包

tar zxvf pcre-8.35.tar.gz

cd pcre-8.35

 

=====>编译安装

./configure

 

make && make install

 

 

=====>search version

 

pcre-config --version

 

 

 

=====>下载 Nginx

 

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

 

 

=====>unrar

 

tar zxvf nginx-1.6.2.tar.gz

 

cd nginx-1.6.2

 

 

=====>编译安装

./configure --prefix=/usr/local/webserver/nginx --with-http_stub_status_module --with-http_ssl_module --with-pcre=/usr/local/src/pcre-8.35

 

make

make install

 

 

./configure

 

make

make install

 

=====>search nginx version

 

/usr/local/webserver/nginx/sbin/nginx -v

 

创建 Nginx 运行使用的用户 www

 

[root@bogon conf]#
/usr/sbin/groupadd www 

[root@bogon conf]#
/usr/sbin/useradd -g www www

 

yum install -y pcre pcre-devel

yum install -y zlib zlib-devel

yum install -y openssl openssl-devel

 

=====>

tar -zxvf nginx-1.6.2.tar.gz -C /usr/local/

 

tar -zxvf nginx-1.6.2.tar.gz -C /usr/local/

 

=====>进行configure配置

 

./configure --prefix=/usr/local/nginx

 

make && make install

 

/usr/local/nginx/sbin/nginx

 

=====>ps -ef | grep nginx

 

=====>close ngnix

/usr/local/nginx/sbin/nginx -s stop

 

=====>重新热启动nginx

重新热启动nginx

 

=====>配置防火墙,nginx默认的端口是80

 

firewall-cmd --zone=public --add-port=80/tcp –permanent

firewall-cmd --reload

 

 

 

worker_processes 1;

 

events {

worker_connections 1024;

}

 

http {

 

include mime.types;

default_type application/octet-stream;

sendfile on;

    upstream mytest {

server 10.2.4.149:8080;

}

server {

listen 8080;

server_name 192.168.163.4;

index devices.html;

        root /home/wonders/work/app_download;

        location ~ /test/(.*) {

proxy_redirect off;

proxy_set_header Host $host;

proxy_set_header X-Real-IP $remote_addr;

proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

proxy_pass http://mytest;

}

 

}

 

log_format access '$remote_addr - $remote_user [$time_local] "$request" $status $body_bytes_sent "$http_referer" "$http_user_agent" $http_x_forwarded_for' server_ip $server_addr proxy_host $proxy_host upstream_server_ip $upstream_addr';

access_log logs/access.log access;

    
 

 

}

 

}

 

 

 

 

=====> gzip

gzip on; #开启gzip

gzip_min_length 1k; #低于1kb的资源不压缩

gzip_comp_level 3; #压缩级别【1-9】,越大压缩率越高,同时消耗cpu资源也越多,建议设置在4左右。

gzip_types text/plain application/javascript application/x-javascript text/javascript text/xml text/css; #需要压缩哪些响应类型的资源,多个空格隔开。不建议压缩图片,下面会讲为什么。

gzip_disable "MSIE [1-6]\."; #配置禁用gzip条件,支持正则。此处表示ie6及以下不启用gzip(因为ie低版本不支持)

gzip_vary on; #是否添加"Vary: Accept-Encoding"响应头

az nginx install and other的更多相关文章

  1. CentOS 6.6 nginx install

    /************************************************************************* * CentOS 6.6 nginx instal ...

  2. nginx install in centos

    1.在nginx下载rpm包,如nginx-release-centos-6-0.el6.ngx.noarch.rpm ,并安装(可用yum直接安装): 注:rpm包只是提供一个nginx源. 2.使 ...

  3. 第七篇、Nginx Install On Mac

    方式一: 在mac上安装nginx,依次安装对应的依赖 pcre ./configure --prefix=/usr/local/pcre-8.37 --libdir=/usr/local/lib/p ...

  4. nginx install lua module

    #install luajit #http://luajit.org/download.html .tar.gz cd LuaJIT- make install PREFIX=/home/allen. ...

  5. Nginx Install 记录

    一.安装编译工具及库文件 yum -y install gcc yum -y install gcc-c++ yum -y install zlib; yum -y install pcre-deve ...

  6. centos nginx install openssl

    1.查看是否已经安装 ssl 组件 [root@localhost wwwlogs]# cd /usr/local/nginx/sbin/ [root@localhost sbin]# ./nginx ...

  7. nginx install

    ./configure --prefix=/home/allen.mh/local/nginx --with-http_ssl_module --with-http_sub_module --with ...

  8. nginx HttpLuaModule

    http://wiki.nginx.org/HttpLuaModule#Directives Name ngx_lua - Embed the power of Lua into Nginx This ...

  9. LVS+Keepalived+Squid+Nginx+MySQL主从高性能集群架构部署方案

    方案一,在tomcat的workers.properties里面配置相关条件 worker.tomcat.lbfactor= worker.tomcat.cachesize= worker.tomca ...

随机推荐

  1. HTTP是什么连接

    ① 在HTTP/1.0中,默认使用的是短连接. 但从 HTTP/1.1起,默认使用长连接,用以保持连接特性. ②http长连接并不是一直保持连接 http的长连接也不会是永久保持连接,它有一个保持时间 ...

  2. .NET 使用中文编码

    在.Net Core中默认System.Text中不支持CodePagesEncodingProvider.Instance, System.Text.Encoding.CodePages.dll允许 ...

  3. Integer的最大值

    来自:https://blog.csdn.net/qq_33611068/article/details/77369050 有这样一道题: 编程测试,遍历 0 到 int所能表示最大的正数,将消耗的时 ...

  4. scala函数式编程(一)

    scala函数编程特点: 1.Scala函数使用命名参数: 即函数参数传递的实参与函数名相对应,与函数位置不对应. object Test { def main(args: Array[String] ...

  5. psql常用命令

    cmd命令 pg_ctl --version:查看pgsl版本 pg_ctl -D /xx/pgdata start:启动pgsl数据库 注:必须在环境变量中设置了PGDATA后才能省略-D参数 ,可 ...

  6. github优秀前端项目分享(转)

    http://microjs.com/# 该网站的资源都托管到了github,microjs.com是一个可以让你选择微型的js类库的网站,该网站里的js库都是压缩后不大于5KB的,非常实用 http ...

  7. Axure XMind整理交互思路

    本部分主要是为了研究Xmind思维导图总结设计原型的思路

  8. 确认OHS版本的方法

    还是 opatch lsinventory 好用 C:\Oracle\Middleware\ohs\OPatch>opatch lsinventory Oracle Interim Patch ...

  9. 通过ambari安装hadoop集群,ZT

    通过ambari安装hadoop集群,ZT http://www.cnblogs.com/cenyuhai/p/3295635.html http://www.cnblogs.com/cenyuhai ...

  10. memcached的部署

    window下memcached注册服务 cmd:在学习Memcached时,为了模拟分布存储,常常需要建多个Memcached服务,如何建呢,只能使用命令行了 以管理员身份运行cmd,输入如下命令 ...