`

18、1.7_nignx.conf文件详解

    博客分类:
  • mvc
 
阅读更多
<参看》http://www.cnblogs.com/sunxucool/p/3225818.html
# 定义Nginx运行的用户和用户组(?)
#user  nobody;

#开启进程数(通常等于CPU数量或者2倍于CPU)
worker_processes  1;

##错误日志保存位置  定义类型,[ debug | info | notice | warn | error | crit ]
#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#进程号日志
#pid        logs/nginx.pid;

#等待事件
events {
     (#Linux 2.6以上版本内核中的高性能网络I/O模型 
       #use epoll;
       )
    #单个进程最大连接数(最大连接=连接数x进程数) 
    worker_connections  1024;
}

#设定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  65;

    #打开gzip压缩
    #gzip  on;

    #第一个虚拟主机
    server {
        #监听端口
        listen       8181;
        #主机名   域名可以有多个,用空格隔开
        server_name  localhost;  (192.168.0.101 192.168.0.102)

        #设置字符集 
        #charset koi8-r;
        #本虚拟server的访问日志 相当于局部变量 
        #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       192.168.0.103:8080;
    #    server_name  ;other server name

    #    location / {
             #WEB文件路径
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #ssl加密服务器 
    #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;
    #    }
    #}

}
分享到:
评论

相关推荐

    nginx 1.7.11.3 Gryphon.zip

    在Nginx 1.7.11.3 Gryphon版本中,我们注意到压缩包中包含了一些核心组件和配置文件,如lua51.dll(Lua脚本引擎的支持)、nginx.exe(Nginx服务器的主进程)、nginx_basic.exe(可能是简化版或基础版的Nginx服务器)...

    nginx-1.7.11.3-Gryphon.zip

    2. 配置 Nginx 配置文件(通常位于 `conf/nginx.conf`),根据需求添加 RTMP 模块的相关配置,例如: ```nginx rtmp { server { listen 1935; # RTMP 默认端口 chunk_size 4096; application live { live ...

    nginx1.7.11.3与nginx-rtmp-module-master整合

    《Nginx 1.7.11.3与Nginx-RTMP-Module整合详解》 在当今互联网时代,流媒体服务已经成为了一个不可或缺的部分,尤其在在线视频直播领域,Nginx作为一款高性能的HTTP和反向代理服务器,因其高效、稳定的特点被广泛...

    nginx-1.7.11.3-Gryphon_niginxrtmp_gryphon_

    3. 配置 Nginx 配置文件 `nginx.conf`,添加 RTMP 模块的相关配置段。 4. 启动 Nginx 服务。 **配置示例** ```nginx rtmp { server { listen 1935; # RTMP 接收端口 chunk_size 4096; # 数据块大小,影响网络...

    nginx 1.7.11.3 Gryphon.7z

    **Nginx 1.7.11.3 Gryphon: RTMP 服务器搭建与视频流详解** 在当今数字化时代,视频流传输已经成为互联网内容分发的重要方式之一。Nginx,作为一个高性能的HTTP和反向代理服务器,因其轻量级、稳定性和高效的并发...

    nginx-1.7.8.tar.gz

    Nginx 的配置文件通常是 `conf/nginx.conf`,其中包含了服务器的监听端口、虚拟主机、日志设置等信息。在安装完成后,可以通过以下命令启动 Nginx: ```bash sudo /usr/local/nginx/sbin/nginx ``` 若要停止或重启 ...

    nginx1.7带rtmp模块

    **Nginx 1.7 带 RTMP 模块详解** Nginx 是一款高性能、轻量级的 Web 服务器/反向代理服务器,以其高效稳定、内存占用少的特点在互联网行业中广泛应用。Nginx 1.7 版本是其历史上的一个稳定版本,提供了多种功能改进...

    nginx集成rtmp

    3. **配置Nginx**:编辑`nginx.conf`文件,添加RTMP服务器配置段。基本配置如下: ``` http { ... server { listen 80; ... location /rtmp { rtmp { server { listen 1935; # RTMP端口 chunk_size 4096...

    windows版本nginx1.7 + rtmp模块

    3. **配置 Nginx**:修改 Nginx 的配置文件 `nginx.conf`,添加 RTMP 部分。例如: ``` rtmp { server { listen 1935; # RTMP 接收端口 chunk_size 4096; application live { allow publish all; deny ...

    nginx-1.7z

    安装完成后,主要的配置文件位于 `/etc/nginx/nginx.conf`,其中包含了服务器块(server blocks)和位置块(location blocks),用于定义不同的虚拟主机和服务规则。 ### 3. Nginx 作为静态文件服务器 Nginx 在...

    NGINX最佳实用培训.pdf

    #### 五、NGINX的配置文件详解 - **注释**:配置文件中以`#`开头的行视为注释。 - **指令**:配置文件中的每条指令通常由指令名称、参数以及分号组成。 - 示例:`worker_processes 4;` - **指令块**:使用大括号`{}...

    nginx v1.7.11,经典版本

    3. **配置**:编辑 `/etc/nginx/nginx.conf` 文件,根据实际需求设置服务器块(server blocks)。 4. **启动与管理**:使用 `nginx` 命令启动服务,`nginx -s reload` 用于重新加载配置,`nginx -t` 检查配置文件...

    tomcat+nginx的配置

    ### Tomcat+Nginx配置详解 #### 一、Linux环境下Tomcat与JDK的安装配置 ##### 1. JDK 安装与环境变量配置 在Linux环境下安装JDK是搭建Tomcat服务器的基础步骤之一。 - **下载并解压JDK**: ```bash # tar xvf ...

    nginx rtmp直播框架

    2. **配置**: 配置Nginx以启用RTMP模块,需要在`nginx.conf`或自定义的服务器配置文件中添加RTMP部分。示例如下: ```nginx http { ... server { listen 80; server_name localhost; location /live { rtmp...

    nginx rtmp server

    配置文件通常位于`nginx.conf`,其中需要添加RTMP模块的配置段。例如: ```nginx rtmp { server { listen 1935; # 监听端口 chunk_size 4096; # 数据块大小 application live { live on; record off; } } ...

    nginx带rtmp模块

    Nginx 的配置文件 "nginx.conf" 是管理服务器设置的主要文件。在描述中提到,这个配置文件允许用户手动修改,默认的节点为 "live"。这意味着你可以自定义 RTMP 直播频道,例如创建不同的直播间或者频道。以下是一些...

    nginx动静分离

    首先打开Nginx配置文件`nginx.conf`进行编辑: ```nginx user wwwwww; # 指定运行Nginx的用户 worker_processes 8; # 设置工作进程数 error_log /usr/local/nginx/logs/nginx_error.log crit; # 错误日志配置 pid /...

    Nginx 简单的负载均衡配置示例

    用户访问http://www.net-hb.com.cn,将其负载均衡到192.168.1.2:80、... 以下为配置文件nginx.conf: 引用 [table=95%][tr][td]user www www; worker_processes 10; #error_log logs/error.log; #error_log logs/error.

Global site tag (gtag.js) - Google Analytics