博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx.conf 文中描述的配置文件
阅读量:6160 次
发布时间:2019-06-21

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

###############################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;    #    }    #}}

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

你可能感兴趣的文章
MySQL 文件导入出错
查看>>
java相关
查看>>
由一个异常开始思考springmvc参数解析
查看>>
向上扩展型SSD 将可满足向外扩展需求
查看>>
虚机不能启动的特例思考
查看>>
SQL Server编程系列(1):SMO介绍
查看>>
在VMware网络测试“专用VLAN”功能
查看>>
使用Formik轻松开发更高质量的React表单(三)<Formik />解析
查看>>
也问腾讯:你把用户放在什么位置?
查看>>
CSS Sprites 样式生成工具(bg2css)
查看>>
[转]如何重构代码--重构计划
查看>>
类中如何对list泛型做访问器??
查看>>
C++解析XML--使用CMarkup类解析XML
查看>>
P2P应用层组播
查看>>
Sharepoint学习笔记—修改SharePoint的Timeouts (Execution Timeout)
查看>>
CSS引入的方式有哪些? link和@import的区别?
查看>>
Redis 介绍2——常见基本类型
查看>>
asp.net开发mysql注意事项
查看>>
(转)Cortex-M3 (NXP LPC1788)之EEPROM存储器
查看>>
ubuntu set defult jdk
查看>>