码迷,mamicode.com
首页 >  
搜索关键字:worker_processes    ( 487个结果
nginx_ssl证书双向认证以及负载均衡配置
#user nobody;worker_processes 1; #error_log logs/error.log;#error_log logs/error.log notice;#error_log logs/error.log info; #pid logs/nginx.pid; event ...
分类:其他好文   时间:2017-08-31 19:10:51    阅读次数:202
nginx.conf
#user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; ev... ...
分类:其他好文   时间:2017-08-31 15:56:19    阅读次数:200
Nginx 设置域名转向配置
#运行用户 #user www-data; #启动进程,通常设置成和cpu的数量相等 worker_processes 2; #全局错误日志及PID文件 error_log logs/error.log; error_log logs/error.log notice; error_log logs... ...
分类:其他好文   时间:2017-08-25 09:41:11    阅读次数:223
nginx配置详解
nginx.conf配置详解: 全局配置: user nginx; #运行用户 worker_processes 4; #工作进程数,通常等于CPU数量或者核心数(-1) error_log /var/logs/nginx/error.log crit; #错误日志位置和级别 pid /var/ru ...
分类:其他好文   时间:2017-08-24 00:08:11    阅读次数:207
laravel + php cgi + nginx在windows平台下的配置
1.d:\xampp\php\php-cgi.exe -b 127.0.0.1:9000 -c d:\xampp\php\php.ini 2.nginx conf配置如下: #user nobody;worker_processes 1; #error_log logs/error.log;#err ...
分类:Windows程序   时间:2017-08-21 14:45:40    阅读次数:259
Nginx配置文件详解
######Nginx配置文件nginx.conf中文详解##### #定义Nginx运行的用户和用户组 user www www; #nginx进程数,建议设置为等于CPU总核心数。 worker_processes 8; #全局错误日志定义类型,[ debug | info | notice | ...
分类:其他好文   时间:2017-08-11 17:48:13    阅读次数:207
nginx配置文件详解
#运行用户 user www-data; #启动进程,通常设置成和cpu的数量相等 worker_processes 1; #全局错误日志及PID文件 error_log /var/log/nginx/error.log; pid /var/run/nginx.pid; #工作模式及连接数上限 ev ...
分类:其他好文   时间:2017-08-11 12:15:57    阅读次数:152
nginx upstream 名称下划线问题
原始配置: user nobody;worker_processes 1;#pid logs/nginx.pid; worker_connections 1024;}http { include mime.types; default_type application/octet-stream; # ...
分类:其他好文   时间:2017-08-09 13:02:52    阅读次数:272
nginx的 CPU參数worker_processes和worker_cpu_affinity使用说明
Nginx默认没有开启利用多核CPU,我们能够通过添加worker_cpu_affinity配置參数来充分利用多核CPU。CPU是任务处理,计算最关键的资源,CPU核越多。性能就越好。 worker_cpu_affinity这个參数要结合 worker_processes来一起使用。 首先 先说 w ...
分类:其他好文   时间:2017-08-07 22:30:18    阅读次数:324
Nginx配置 简单写了个
#user nobody;worker_processes 1; #error_log logs/error.log;#error_log logs/error.log notice;#error_log logs/error.log info; #pid logs/nginx.pid; event ...
分类:其他好文   时间:2017-08-05 18:59:22    阅读次数:115
487条   上一页 1 ... 21 22 23 24 25 ... 49 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!