网站首页 美食营养 游戏数码 手工爱好 生活家居 健康养生 运动户外 职场理财 情感交际 母婴教育 时尚美容

nginx 负载均衡

时间:2024-11-03 09:55:11

1、nginx配置如下:在入口服务器192.168.1.1设置upstream myfastcgi { server 192.168.1.2:9000 weight=1; server 192.168.1.3:9000 weight=1; }server{ listen 80; server_name localhost; root /home/html; location ~\.php{ include fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_pass myfastcgi; }}

2、将服务器192.168.1.2192.168.1.3的php-fpm配置文件/etc/php5/fpm/pool.d/www.conf 中的listen改为192.168.1.2:9000 和192.168.1.3:9000

© 2025 一点资料
信息来自网络 所有数据仅供参考
有疑问请联系站长 site.kefu@gmail.com