# 目录与配置文件
* * * * *
--: 作者:Mick
时间:2019年4月17日
* * * * *
### 目录简介
/etc/nginx/nginx.conf 配置文件
/usr/local/nginx/bin 命令目录
/usr/local/nginx/html 网站根目录
/var/log/nginx/log 日志目录
/tmp/nginx/ 临时文件目录
/usr/local/nginx/man 使用手册
### 查看编译参数
nginx -V
### 配置文件详解
##### 基本参数
user 设置nginx服务的系统使用用户
work_processes 工作进程数,设置成硬件的核心数最佳
error_log 错误日志
pid 进程id存放文件
##### events
use 工作进程数
worker_connections 每个进程的最大连接数,1W左右,不要超过65535
##### http配置
大体框架
http {
server {
listen 端口号;
server_name 域名;
location / { //访问路径
}
}
}
具体参数讲解
include mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
sendfile on;
##### 错误页面设置
error_page 4XX 5XX /error.html
location = /error.html {
root html;
}