
nginx
Terry_Tsang
It's nobody
展开
-
nginx 代理部署
目的 作为 transfer, heartbeat, judge, falcon-api 服务转发调度 4242 端口代理了 tsdb 服务 8633 端口代理了 transfer 服务 6030 端口代理了 hbs 服务 80 端口代理了 falcon-api 服务 安装 yum install -y epel-release yum install -y nginx 配置 /etc/nginx/nginx.conf user apps apps; worker_processes 24; w原创 2020-08-20 18:06:42 · 183 阅读 · 0 评论 -
nginx 技巧
默认, nginx 具有 1024 限制 除了令 daemon 用户 打开文件最大限制 -> limits.conf 以外 nginx.conf 需要打开最大进程文件并发量 worker_rlimit_nofile 20000; php 支持中 具有下面两种方法 fastcgi_pass unix:/var/run/php.socket fastc原创 2012-03-22 00:21:39 · 727 阅读 · 0 评论 -
nginx 配置文件备忘
当前 nginx 实现了 jboss 调度,SESSION 同步功能 但最近某个项目 tomcat 集群需要临时迁移,也共同部署到当前项目环境中 user daemon; # 定义 进程用户 worker_processes 2;原创 2013-07-31 16:57:29 · 1266 阅读 · 0 评论