博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx 安装和配置文件说明
阅读量:5369 次
发布时间:2019-06-15

本文共 771 字,大约阅读时间需要 2 分钟。

1. 安装依赖包

  yum install gcc gcc+

  yum install -y pcre pcre-devel openssl openssl-devel zlib zlib-devel

2. 创建nginx用户

  useradd -s /bin/false -M nginx

3. 下载包并安装

  curl -LJO http://nginx.org/download/nginx-1.12.2.tar.gz

  ./configure --user=nginx --group=nginx --prefix=/data/nginx/ --with-http_v2_module --with-http_ssl_module --with-http_sub_module --with-http_stub_status_module --with-http_gzip_static_module --with-pcre

  make && make install

4. 配置文件说明

  user nginx nginx;  定义运行的用户和用户组

  worker_processes 1; 

  error_log logs/error.log; 定义log存放路径

  pid /var/run/nginx.pid 进程文件

  worker_connections 1024; 最大并发连接数(总并发数=worker_processes * worker_connections)

    

  

参考链接:https://www.cnblogs.com/liang-wei/p/5849771.html

转载于:https://www.cnblogs.com/Jack1023/p/8583734.html

你可能感兴趣的文章
windows超过最大连接数解决命令
查看>>
12个大调都是什么
查看>>
angular、jquery、vue 的区别与联系
查看>>
Intellij idea创建javaWeb以及Servlet简单实现
查看>>
代理网站
查看>>
Open multiple excel files in WebBrowser, only the last one gets activated
查看>>
FFmpeg进行视频帧提取&音频重采样-Process.waitFor()引发的阻塞超时
查看>>
最近邻与K近邻算法思想
查看>>
【VS开发】ATL辅助COM组件开发
查看>>
FlatBuffers In Android
查看>>
《演说之禅》I & II 读书笔记
查看>>
thinkphp3.2接入支付宝支付接口(PC端)
查看>>
【转】在Eclipse中安装和使用TFS插件
查看>>
C#中Monitor和Lock以及区别
查看>>
【NOIP2017】奶酪
查看>>
5.6.3.7 localeCompare() 方法
查看>>
Linux下好用的简单实用命令
查看>>
描绘应用程序级的信息
查看>>
php环境搭建脚本
查看>>
php 编译常见错误
查看>>