az nginx install and other
Nginx
1◆ nginx install
- 源码:https://trac.nginx.org/nginx/browser
- 官网:http://www.nginx.org/


=====>安装编译工具及库文件
|
yum -y install make zlib zlib-devel gcc-c++ libtool openssl openssl-devel |
=====>下载 PCRE 安装包
|
=====>解压安装包
|
|
|
|
=====>编译安装
|
=====>search version
pcre-config --version
=====>下载 Nginx
|
=====>unrar
|
cd nginx-1.6.2
=====>编译安装
|
make install |
./configure
make
make install
=====>search nginx version
|
创建 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的更多相关文章
- CentOS 6.6 nginx install
/************************************************************************* * CentOS 6.6 nginx instal ...
- nginx install in centos
1.在nginx下载rpm包,如nginx-release-centos-6-0.el6.ngx.noarch.rpm ,并安装(可用yum直接安装): 注:rpm包只是提供一个nginx源. 2.使 ...
- 第七篇、Nginx Install On Mac
方式一: 在mac上安装nginx,依次安装对应的依赖 pcre ./configure --prefix=/usr/local/pcre-8.37 --libdir=/usr/local/lib/p ...
- nginx install lua module
#install luajit #http://luajit.org/download.html .tar.gz cd LuaJIT- make install PREFIX=/home/allen. ...
- Nginx Install 记录
一.安装编译工具及库文件 yum -y install gcc yum -y install gcc-c++ yum -y install zlib; yum -y install pcre-deve ...
- centos nginx install openssl
1.查看是否已经安装 ssl 组件 [root@localhost wwwlogs]# cd /usr/local/nginx/sbin/ [root@localhost sbin]# ./nginx ...
- nginx install
./configure --prefix=/home/allen.mh/local/nginx --with-http_ssl_module --with-http_sub_module --with ...
- nginx HttpLuaModule
http://wiki.nginx.org/HttpLuaModule#Directives Name ngx_lua - Embed the power of Lua into Nginx This ...
- LVS+Keepalived+Squid+Nginx+MySQL主从高性能集群架构部署方案
方案一,在tomcat的workers.properties里面配置相关条件 worker.tomcat.lbfactor= worker.tomcat.cachesize= worker.tomca ...
随机推荐
- 使用JS语句,利用for循环的方法创建表格的两种方法
首先去layui官网下载教程示例,在项目中加载layui.css,layui.js,JQuery.js 第一种: 将jsp语句写成字符串的形式,使用document.write()方式输出: 代码如下 ...
- Node.js 常用命令
1. 查看node版本 node --version 2. 查看npm 版本,检查npm 是否正确安装. npm -v 3. 安装cnpm (国内淘宝镜像源),主要用于某些包或命令程序下载不下来的情况 ...
- ubuntu 安装cuda 9.1 pytorch 0.3.0
毕业再没用配过机器学习的环境了,既亲切又陌生,久违了. 系统 mint18 x64 1安装cuda 按官网提示 选的9.1版 https://developer.nvidia.com/cuda-t ...
- x1c 2017 安装mint18的坑——grub2
折腾一天,死活安装不上.用U盘安装,能进入pe,但是安装时提示无法将grub2安装到/target/ 不论如何分区.如何修改BIOS 安全启动和 启动模式.都是这个问题. ubuntu16.04.3 ...
- openstack 重启服务命令
重启openstack的整个服务openstack-service restart 1. 重启dashboardservice httpd restart service memcached rest ...
- Notepad++ 的资源管理器 右键菜单
以前装的版本,右键[Edit With Notepad++]都可以出来的. 最近安装的总是不行. 不知道是Windows的原因,还是新版本的原因. 网上也都是用workaround去解决的. 免费的东 ...
- 抽离amazeUI里面的弹出框
花了一些时间读了amazeUI的源码 把他的弹出框给单独抽离出来了,具体可以见源码:http://pan.baidu.com/s/1mibQ9T2
- android-------- socket 实现客户端与服务器端通信
前面介绍了Socket的简介和原理,今天简单的来实现一下客服端与服务器通信的功能 客服端 建立连接 try { socket = new Socket("192.168.1.100" ...
- apiCloud 播放视频
api.openVideo({ url:'https://fabu.chenchaoweb.cn/./Uploads/5a3b72be2b102.mp4' (路径必须是完整路径) });
- 报错 hint: Updates were rejected because the remote contains work that you do 解决方法
1. git pull origin master --allow-unrelated-histories 2.git pull origin master 3.git init 4.git remo ...

