使用Nginx作为前端服务能够更快更及时的响应静态页面、js、图片等,当客户端请求访问动态页面时由Nginx的反向代理给Apache处理,Apache处理完再交予Nginx返回给客户端。 Nginx更擅长于底层服务器端资源的处理(静态资源处理转发、反向代理,负载均衡等),Node.js更擅长于上层具 ...
分类:
其他好文 时间:
2018-10-04 16:02:53
阅读次数:
150
#运行用户 user nobody; #启动进程,通常设置成和cpu的数量相等 worker_processes 1; #全局错误日志及PID文件 #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs ...
分类:
其他好文 时间:
2018-06-20 14:35:46
阅读次数:
207
nginx 基本配置 一、安装 1. 准备nginx安装包,并放入指定目录中 nginx 1.13.7.tar.gz 2. 安装nginx 安装必要工具 yum y install gcc zlib zlib devel pcre devel openssl openssl devel 安装ngin ...
分类:
其他好文 时间:
2018-05-12 14:27:22
阅读次数:
152
user nobody; #启动进程,通常设置成和cpu的数量相等 worker_processes 1; #全局错误日志及PID文件 #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error ...
分类:
其他好文 时间:
2018-03-03 15:22:40
阅读次数:
188
一、准备 1.1 环境准备 "CentOS7软件环境" 1.2 tomcat多实例 把/etc/profile.d/tomcat.sh中的变量注释了 复制tomcat目录 修改配置 a.sh 启动多实例 1.3 配置hosts 二、负载均衡 2.2 流程 2.2 nginx配置 http://ngi ...
分类:
其他好文 时间:
2018-03-02 10:22:24
阅读次数:
207
nginx基本配置nginx(enginex)是一款由俄罗斯人开发的一款开源的web服务器软件,nginx可以作web服务器支持html和php,nginx还可以做反向代理、负载均衡nginx采用源码包安装nginx-1.8.1.tar.gz1.先用yum安装依赖包yum-yinstallgccpcre-developenssl-develzlib-develmake2.创建一个禁止登陆的用户ng
分类:
系统相关 时间:
2018-02-01 22:04:10
阅读次数:
216
1.虚拟机和linux就不给大家说了。在讲课时候给大家简单演示下。 2.http://jingyan.baidu.com/article/25648fc1a93bd49191fd000a.html (网络教程) 安装nginx 1.基本配置软件 yum install -y gcc gdb stra ...
分类:
其他好文 时间:
2018-01-01 21:49:05
阅读次数:
180
nginx基本配置与参数说明 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 ...
分类:
其他好文 时间:
2017-11-27 21:38:08
阅读次数:
113
nginx的yum安装,基本参数使用,编译参数说明和Nginx基本配置语法 ...
分类:
其他好文 时间:
2017-10-08 22:39:36
阅读次数:
299
#运行用户 user nobody; #启动进程,通常设置成和cpu的数量相等 worker_processes 1; #全局错误日志及PID文件 #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs... ...
分类:
其他好文 时间:
2017-10-06 18:37:35
阅读次数:
102