【nginx】配置Nginx实现负载均衡 - QiaoZhi - 博客园
nignx 负载均衡的几种算法介绍 - 那家那人那小伙 - 博客园
nginx.conf 配置文件如下:
upstream tomcatserver1 { server 192.168.1.133 weight=3; server 192.168.1.152 ; } server { listen 80; server_name load_balance.com; #charset koi8-r; #access_log logs/host.access.log main; location / { proxy_pass http://tomcatserver1; index index.html index.htm; } }
lnmp 环境,nginx如何解析PHP
PHP-FPM(FastCGI Process Manager:FastCGI进程管理器)是一个PHPFastCGI管理器
apache 如何解析php