###############################nginx.conf 件里文说明
#user nobody; # user 主模块指令,指令nginx worker 执行用户和用户组(user xxxuser xxxgroup) 。默认由nobody执行
worker_processes 1; # worker_processes 主模块指令,指令nginx执行进程数,每一个进程平均耗10m-12m内存,单核为1,多核为n #error_log logs/error.log; # 全局日志 输出级别debug,info,notice,warn,error,crit ,当中debug输出日志最为具体
#error_log logs/error.log notice; #级别 notice
#error_log logs/error.log info; #级别 info #pid logs/nginx.pid; #pid 指令 指定进程id存储位置 events {
worker_connections 1024; #events 指令 指令nginx 工作模式和连接数上限
} http { #http服务器配置
include mime.types; #包括文件mime.types
default_type application/octet-stream; #默觉得二进制流 #日志格式的设定
#log_format main '$remote_addr - $remote_user [$time_local] "$request" ' #HttpLog模块指令,日志输出格式。main为日志名称,能够在access_log指令引用
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"'; #access_log logs/access.log main; sendfile on; #高效文件传输模式,将tcp_nopush和tcp_nodely设置为on
#tcp_nopush on; #keepalive_timeout 0; #client连接保持活动的超时时间,超时后关闭连接
keepalive_timeout 65; #gzip on; #开启gzip压缩 实时压缩输出数据流 #server虚拟主机配置
server {
listen 80; #端口
server_name localhost; #ip或域名,能够多个www.abc.com,127.0.0.1 #charset koi8-r; #编码格式 #access_log logs/host.access.log main; #虚拟主机訪问日志存放路径 location / {
root html;
index index.html index.htm;
} #error_page 404 /404.html; # 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;
# server_name localhost; # ssl on;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key; # ssl_session_timeout 5m; # ssl_protocols SSLv2 SSLv3 TLSv1;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on; # location / {
# root html;
# index index.html index.htm;
# }
#} }

版权声明:本文博客原创文章。博客,未经同意,不得转载。

最新文章

  1. ubuntu中phpmyadmin密码忘记
  2. 使用App.config管理数据库连接
  3. position定位
  4. [HTML5]label标签使用以及建议
  5. javascript正则表达式替换字符串
  6. 原生JS修改标签样式为带阴影效果
  7. JMS - ExceptionListener
  8. MyBatis的动态SQL操作--删除
  9. js小写转实现资本,js数字革命万元
  10. Java面试题精选(三) JSP/Servlet Java面试逻辑题
  11. 深入了解mysql它BDB系列(1)---BDB基础知识
  12. sqlite创建数据库并创建一个表
  13. VideoView的视频的全屏播放
  14. 关于combotree的用法总结
  15. winPcap编程之打开适配器并捕获数据包(四 转)
  16. Spark源码剖析(七):Job触发流程原理与源码剖析
  17. 微信网页授权获取用户openid及用户信息
  18. Python 从入门到实践 试一试 参考代码
  19. js bind0
  20. Spark streaming的正确使用。。

热门文章

  1. string的不可变性
  2. Tesseract Ocr引擎
  3. Cloudera Hadoop 4 实战课程(Hadoop 2.0、集群界面化管理、电商在线查询+日志离线分析)
  4. C++中 auto自己主动变量,命名空间,using作用以及作用域
  5. NM_CUSTOMDRAW 消息
  6. HDU-1039-Easier Done Than Said?(Java && 没用正則表達式是我的遗憾.....)
  7. POJ 1781 In Danger Joseph环 位运算解法
  8. Hadoop--序列化
  9. 自己写一个jqery的拖拽插件
  10. Delphi 实现无窗口移动(详细使用WM_NCHITTEST和PtInRect API进行测试)