nginx 配置参数详解

[[email protected] ~]# cat /etc/nginx/nginx.conf

#user  nobody;#定义nginx运行的用户和用户组
user root;
worker_processes  8;#nginx进程数,建议设置为等于CPU总核心数

#error_log  logs/error.log;#错误日志路径
#error_log  logs/error.log  notice;#错误日志类型,如[debug | info | notice | warn | error | crit ]
#error_log  logs/error.log  info;错误日志类型

#pid        logs/nginx.pid;#进程文件

worker_rlimit_nofile 51200;#一个nginx进程打开的最多文件描述符数目,理论值应该是最多打开文件数(系统的值ulimit)

events {#工作模式与连接数上限
    use epoll;#参考事件模型[ kqueue | rtsig | epoll | /dev/poll | select | poll ];
    worker_connections  51200;#单个进程最大连接数
}

http {#设定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"‘;

#access_log  logs/access.log  main;

sendfile        on;#开启高效文件传输模式
    #tcp_nopush     on;#防止网络阻塞

#keepalive_timeout  0;
    keepalive_timeout  120;#长连接超时时间,单位是秒

upstream backend {#upstream的负载均衡,
        ip_hash;#使用ip_hash的算法
        server 50.50.50.16:8020;#realserver的IP和端口号
        server 50.50.50.13:8020;#realserver的IP和端口号
    }

#gzip  on;#开启gzip压缩输出

server {          #虚拟主机的配置
        listen       8080;             #虚拟主机监听的端口号
        server_name  WEBServer10414;            #虚拟主机的域名或主机名
        if ( $host ~* "\d+\.\d+\.\d+\.\d+" ) {
                                        return 400;
                                }

charset utf-8;默认编码

#access_log  logs/host.access.log  main;#定义本虚拟主机的访问日志

location / {#对“/”启用反向代理
           # root   html;
           index  index.jsp  index.html index.htm; #可以识别的索引文件的类型
           proxy_set_header Host $host:8080;
           proxy_set_header X-Real-IP $remote_addr;
           proxy_set_header X-Real-Port $remote_port;
           proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;#后端的Web服务器可以通过X-Forwarded-For获取用户真实IP
           proxy_pass http://backend;

proxy_buffer_size          64k;#设置代理服务器(nginx)保存用户头信息的缓冲区大小
           proxy_buffers              64 128k;#proxy_buffers缓冲区
           proxy_busy_buffers_size    256k;#高负荷下缓冲大小(proxy_buffers * 2)
           proxy_temp_file_write_size 256k;#设定缓存文件夹大小,将从upstream服务器传
           }

location /nstatus {#设定查看nginx状态的地址
                check_status;
                access_log off;
        }

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

upstream backend1 {
        ip_hash;
        server 50.50.50.16:8030;
        server 50.50.50.13:8030;
    }
       server {
        listen       8090;
        server_name  WEBServer10414;

charset utf-8;
        location /stsadmin-cm/ {
            index index.jsp index.htm index.html;
            proxy_pass http://backend1/stsadmin-cm/;
            proxy_redirect default;
            proxy_buffer_size          16k;
            proxy_buffers              16 128k;
            proxy_busy_buffers_size    256k;
            proxy_temp_file_write_size 256k;
        }
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

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

}

时间: 2024-10-11 00:12:27

nginx 配置参数详解的相关文章

nginx配置参数详解

配置参数详解 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(进程标识符):存放路径

nginx配置参数详解 && mysql CMAKE 参数说明!

http://nginx.org/en/docs/configure.html https://www.cnblogs.com/hllnj2008/p/4043778.html Nginx工作原理和优化总结: https://blog.csdn.net/hguisu/article/details/8930668 原文地址:http://blog.51cto.com/python20101030/2348434

eAccelerator 配置参数详解

eAccelerator 配置参数详解 eaccelerator.shm_size="32" eAccelerator 可以使用的共享内存的数量 (以兆为单位) . "0" 是指操作系统的默认值. 默认值是 "0".可根据服务器的实际情况来调整,16,32,64,128都是可以的. eaccelerator.cache_dir="/home/php/tmp" 这个目录是给磁盘缓存使用. eAccelerator 在这里储存预先

jquery的uploadify插件多文件上传配置参数详解

最近做了个多文件上传,需要限制上传文件类型的例子.以前没做过找了一些资料,下次有用.同时也给大家做参考. uploader: uploadify.swf 文件的相对路径,该swf文件是一个带有文字BROWSE的按钮,点击后淡出打开文件对话框,默认值:uploadify.swf. script: 后台处理程序的相对路径 .默认值:uploadify.php checkScript:用来判断上传选择的文 件在服务器是否存在的后台处理程序的相对路径 fileDataName:设置一个名字,在服务器处理

zookeeper的配置参数详解(zoo.cfg)

配置参数详解(主要是%ZOOKEEPER_HOME%/conf/zoo.cfg文件) 参数名 说明 clientPort 客户端连接server的端口,即对外服务端口,一般设置为2181吧. dataDir 存储快照文件snapshot的目录.默认情况下,事务日志也会存储在这里.建议同时配置参数dataLogDir, 事务日志的写性能直接影响zk性能. tickTime ZK中的一个时间单元.ZK中所有时间都是以这个时间单元为基础,进行整数倍配置的.例如,session的最小超时时间是2*tic

Mysql 配置参数详解以及优化配置

mysql有以下几种日志: 错误日志:   log-err 查询日志:   log 慢查询日志:  log-slow-queries 更新日志:   log-update 二进制日志: log-bin 要把日志生成在 /var/log 目录下(是系统日志存放的地方,只有 root 账号有写权限),需要 MySQL进程对这个目录有读写权限,一般是不这么做的,也考虑到安全问题,包括 MySQL 本身的数据安全,因为对 MySQL 的所有操作,都会记录到常规查询日志.MySQL的日志就不要用 /var

reids配置参数详解

转自:http://www.jb51.net/article/60627.htm reids配置参数详解 #daemonize no  默认情况下, redis 不是在后台运行的,如果需要在后台运行,把该项的值更改为 yes daemonize yes #  当 redis 在后台运行的时候, Redis 默认会把 pid 文件放在 /var/run/redis.pid ,你可以配置到其他地址. #  当运行多个 redis 服务时,需要指定不同的 pid 文件和端口 pidfile /var/

MHA实现mariadb的高可用的详细步骤及配置参数详解

MHA实现mariadb的高可用的详细步骤及配置参数详解 A. 实验环境说明 a) 4台centos7主机 b) 角色说明: a. MHA:192.168.36.35 b. Master_mariadb:192.168.36.121 c. Slave_mariadb:192.168.36.120 d. Slave_mariadb:192.168.36.27 B. 安装程序包 a) mariadb上安装: mariadb-server 版本:5.5.60 mha4mysql-node -0.56-

samba 配置参数详解

samba 配置参数详解: 一.全局配置参数  workgroup = WORKGROUP说明:设定 Samba Server 所要加入的工作组或者域. server string = Samba Server Version %v说明:设定 Samba Server 的注释,可以是任何字符串,也可以不填.宏%v表示显示Samba的版本号. netbios name = smbserver说明:设置Samba Server的NetBIOS名称.如果不填,则默认会使用该服务器的DNS名称的第一部分