[root@192 conf]# ll
总用量 68
-rw-r--r--. 1 root root 1077 5月 12 23:48 fastcgi.conf 存放fastcgi 相关的配置
-rw-r--r--. 1 root root 1077 5月 12 23:48 fastcgi.conf.default fastcgi.conf 的原始备份文件,用于还原
-rw-r--r--. 1 root root 1007 5月 12 23:48 fastcgi_params fastcgi 相关参数文件
-rw-r--r--. 1 root root 1007 5月 12 23:48 fastcgi_params.default fastcgi_params 的原始备份文件,用于还原
-rw-r--r--. 1 root root 2837 5月 12 23:48 koi-utf 编码转换映射文件
-rw-r--r--. 1 root root 2223 5月 12 23:48 koi-win 编码转换映射文件
-rw-r--r--. 1 root root 5349 5月 12 23:48 mime.types 存放媒体资源的类型,例如:xml、html、css
-rw-r--r--. 1 root root 5349 5月 12 23:48 mime.types.default mime.types 的原始备份文件,用于还原
-rw-r--r--. 1 root root 2658 5月 17 00:23 nginx.conf nginx 默认主配置文件
-rw-r--r--. 1 root root 2656 5月 12 23:48 nginx.conf.default nginx.conf 的原始备份文件,用于还原
-rw-r--r--. 1 root root 636 5月 12 23:48 scgi_params 与fastcgi_params一样,传递哪些服务器的变量
-rw-r--r--. 1 root root 636 5月 12 23:48 scgi_params.default scgi_params 的原始备份文件,用于还原
-rw-r--r--. 1 root root 664 5月 12 23:48 uwsgi_params 服务器和服务端应用程序的通信协议,规定了怎么把请求转发给应用程序和返回
-rw-r--r--. 1 root root 664 5月 12 23:48 uwsgi_params.default uwsgi_params 的原始备份文件,用于还原
-rw-r--r--. 1 root root 3610 5月 12 23:48 win-utf 编码转换映射文件
user nobody; #配置用户或组,默认nobody
worker_processes 1; #与cpu核数相等或者2陪,允许生成的进程数,默认为1
error_log logs/error.log; #错误日志
error_log logs/error.log notice;
error_log logs/error.log info;
pid logs/nginx.pid; #nginx pid 文件位置(指定nginx进程运行文件存放地址)
events {
worker_connections 1024; #一个进程可以产生多少个工作的连接,nginx的最大并发访问量1024;默认512
}
http {
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"';
补充:log_format:指定日志格式
$remote_addr:远程客户端的IP地址
$remote_user:远程客户端用户名称,用于记录浏览者进行身份验证时提供的名字,如登录百度的用户名scq2099yt,如果没有登录就是空白
$time_local: 访问的时间与时区,比如18/Jul/2012:17:00:01 +0800,时间信息最后的"+0800"表示服务器所处时区位于UTC之后的8小时
$request:请求的URI和HTTP协议,这是整个PV日志记录中最有用的信息,记录服务器收到一个什么样的请求
$status:记录请求返回的http状态码,比如成功是200
$body_bytes_sent:发送给客户端的文件主体内容的大小,比如899,可以将日志每条记录中的这个值累加起来以粗略估计服务器吞吐量
$http_referer:记录从哪个页面链接访问过来的(请求头Referer的内容 )
$http_user_agent:客户端浏览器信息(请求头User-Agent的内容 )
$http_x_forwarded_for:客户端的真实ip,通常web服务器放在反向代理的后面,这样就不能获取到客户的IP地址了,
通过$remote_add拿到的IP地址是反向代理服务器的iP地址。反向代理服务器在转发请求的http头信息中,可以增加 x_forwarded_for信息,
用以记录原有客户端的IP地址和原来客户端请求的服务器地址。
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65; #连接超时时间,默认65s
#gzip on;
server {
listen 8089; #监听8089端口
server_name localhost; #监听地址
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm;
}
#error_page 404 /404.html; 错误页,跳转到404页面
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}