nginx是个http服务器,是俄罗斯人发明的,优点是并发量50000,占用内存,cpu少!功能强大,全国约12%都使用。在我国阿里,百度,腾讯,新浪等网站都在使用!
nginx主要用于反向代理,负载均衡(热备,轮询,加权轮询),使用简单
http {
upstream myapp{
ip-hash;(least-conn;)
server example.com;
server exanple.com;}
server {
listen 80;
location /(nginx的主目录) {
proxy_pass http://myapp;
root html;(用户目录下的html中)
index index.html;}}
}