一、ubuntu系统安装nginx服务
# apt-get install nginx
二、nginx.config配置文件详解
配置文件结构:
全局块(全局变量) events{ } http{ http全局变量 # upstream模块不是必须的结构 # upstream{ # } server{ server全局 location块{ } } }
全局块包含:
user nginx nginx ; // Nginx用户及组:用户 组。window下不指定
worker_processes 8; // 工作进程:数目。根据硬件调整,通常等于CPU数量或者2倍于CPU。
// 错误日志:存放路径。
error_log logs/error.log;
error_log logs/error.log notice;
error_log logs/error.log info;
pid logs/nginx.pid; // pid(进程标识符):存放路径。
worker_rlimit_nofile 204800; // 指定进程可以打开的最大描述符:数目。
原文地址:https://www.cnblogs.com/carriezhangyan/p/11840917.html
时间: 2024-10-22 05:42:24