Nginx学习
Posted DjanFey
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx学习相关的知识,希望对你有一定的参考价值。
一、nginx三大功能:反向代理、动静分离、负载均衡
二、反向代理
A、proxy_pass: http://....
三、负载均衡
A、基本配置
1. http块
upstream 名字 {
服务器列表...
}
2. location块
location / {
proxy_pass:http://名字
}
四、动静分离
A、基本配置
1. location /文件夹名/ {
root: /上一级文件夹名/,
autoindex on //是否显示文件索引
index: ...
}
五、高可用
A、准备工作
1. 两台服务器
2. 都安装nginx
3. 都安装keepalived
以上是关于Nginx学习的主要内容,如果未能解决你的问题,请参考以下文章