- 浏览: 91045 次
文章分类
最新评论
<参看》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运行的用户和用户组(?)
#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;
# }
#}
}
发表评论
-
41、解决HttpServletResponse输出的中文乱码问题
2015-04-12 21:48 1215response返回有两种,一种是字节流outputs ... -
41、轮询
2015-04-12 08:50 0浏览器关闭使session失效 ... -
40、spring ajax/easyui 中文乱码的解决
2015-04-04 14:52 692使用spingmvc,在JS里面通过ajax发送请求,并 ... -
39、.net
2015-03-28 23:12 542熟悉java编程,自然学习c#就会比较容易,有几个点需要说明下 ... -
38、servlet-- JSTL+EL(c标签、${})
2015-03-23 15:57 780参看:http://www.cnblogs.com/xdp-g ... -
37、servlet--jsp
2015-03-23 15:07 493不管是JSP还是Servlet,虽然都可以用于开发动 ... -
36、servlet--防止表单重复提交
2015-03-23 14:33 7101、在网络延迟会或服务器反应过慢的情况下让用户有时间点击多次s ... -
35、servlet--servletContext
2015-03-22 13:41 474servletContext接口是Servlet中最大的一个接 ... -
34、servlet--会话技术/购物车demo/y验证码
2015-03-21 23:40 586会话Session and Cookie 1、session: ... -
33、servlet--转发/web开发指导思想
2015-03-21 12:31 445转发: req.getRequestDispatcher(&q ... -
32、servlet --重定向/下载/缓存/中文乱码
2015-03-20 23:21 1055重定向1、sendRedirect rep.sendRedir ... -
31、servlet--开发方式
2015-03-20 21:55 633servlet:利用java技术开发动态网页的技术,是学习ja ... -
30、servlet---tomcat原理
2015-03-20 18:20 675Servlet出现得早,servlet很强大,但是se ... -
29、servlet--jsp执行过程
2015-03-20 15:08 446J2EE的13种核心技术:JDBC、JNDI、EJBs、 ... -
29、springmvc+spring+mybatis+oracle12的demo
2015-03-15 20:29 0每次搭建都要重头搭建,累~~ 注意:用12c的jdbc 在安 ... -
27、Tomcat多次加载项目问题
2015-03-12 15:30 562错误配置方式: <Host name="lo ... -
26、数据分页(jsp+servlet)
2015-03-12 15:19 472随着数据库中存储的数据的增多,满足用户查询条件的数据也 ... -
llll.文档设计
2015-03-11 13:31 0设计文档与代码实现到 ... -
24、webservice_短信接口
2015-03-11 10:48 801http://blog.csdn.net/sxdtzhaoxi ... -
25、RMI_demo1
2015-03-11 10:48 426Java RMI 指的是远程方法调用 (Remote Meth ...
相关推荐
在Nginx 1.7.11.3 Gryphon版本中,我们注意到压缩包中包含了一些核心组件和配置文件,如lua51.dll(Lua脚本引擎的支持)、nginx.exe(Nginx服务器的主进程)、nginx_basic.exe(可能是简化版或基础版的Nginx服务器)...
2. 配置 Nginx 配置文件(通常位于 `conf/nginx.conf`),根据需求添加 RTMP 模块的相关配置,例如: ```nginx rtmp { server { listen 1935; # RTMP 默认端口 chunk_size 4096; application live { live ...
《Nginx 1.7.11.3与Nginx-RTMP-Module整合详解》 在当今互联网时代,流媒体服务已经成为了一个不可或缺的部分,尤其在在线视频直播领域,Nginx作为一款高性能的HTTP和反向代理服务器,因其高效、稳定的特点被广泛...
3. 配置 Nginx 配置文件 `nginx.conf`,添加 RTMP 模块的相关配置段。 4. 启动 Nginx 服务。 **配置示例** ```nginx rtmp { server { listen 1935; # RTMP 接收端口 chunk_size 4096; # 数据块大小,影响网络...
**Nginx 1.7.11.3 Gryphon: RTMP 服务器搭建与视频流详解** 在当今数字化时代,视频流传输已经成为互联网内容分发的重要方式之一。Nginx,作为一个高性能的HTTP和反向代理服务器,因其轻量级、稳定性和高效的并发...
Nginx 的配置文件通常是 `conf/nginx.conf`,其中包含了服务器的监听端口、虚拟主机、日志设置等信息。在安装完成后,可以通过以下命令启动 Nginx: ```bash sudo /usr/local/nginx/sbin/nginx ``` 若要停止或重启 ...
**Nginx 1.7 带 RTMP 模块详解** Nginx 是一款高性能、轻量级的 Web 服务器/反向代理服务器,以其高效稳定、内存占用少的特点在互联网行业中广泛应用。Nginx 1.7 版本是其历史上的一个稳定版本,提供了多种功能改进...
3. **配置Nginx**:编辑`nginx.conf`文件,添加RTMP服务器配置段。基本配置如下: ``` http { ... server { listen 80; ... location /rtmp { rtmp { server { listen 1935; # RTMP端口 chunk_size 4096...
3. **配置 Nginx**:修改 Nginx 的配置文件 `nginx.conf`,添加 RTMP 部分。例如: ``` rtmp { server { listen 1935; # RTMP 接收端口 chunk_size 4096; application live { allow publish all; deny ...
安装完成后,主要的配置文件位于 `/etc/nginx/nginx.conf`,其中包含了服务器块(server blocks)和位置块(location blocks),用于定义不同的虚拟主机和服务规则。 ### 3. Nginx 作为静态文件服务器 Nginx 在...
#### 五、NGINX的配置文件详解 - **注释**:配置文件中以`#`开头的行视为注释。 - **指令**:配置文件中的每条指令通常由指令名称、参数以及分号组成。 - 示例:`worker_processes 4;` - **指令块**:使用大括号`{}...
3. **配置**:编辑 `/etc/nginx/nginx.conf` 文件,根据实际需求设置服务器块(server blocks)。 4. **启动与管理**:使用 `nginx` 命令启动服务,`nginx -s reload` 用于重新加载配置,`nginx -t` 检查配置文件...
### Tomcat+Nginx配置详解 #### 一、Linux环境下Tomcat与JDK的安装配置 ##### 1. JDK 安装与环境变量配置 在Linux环境下安装JDK是搭建Tomcat服务器的基础步骤之一。 - **下载并解压JDK**: ```bash # tar xvf ...
2. **配置**: 配置Nginx以启用RTMP模块,需要在`nginx.conf`或自定义的服务器配置文件中添加RTMP部分。示例如下: ```nginx http { ... server { listen 80; server_name localhost; location /live { rtmp...
配置文件通常位于`nginx.conf`,其中需要添加RTMP模块的配置段。例如: ```nginx rtmp { server { listen 1935; # 监听端口 chunk_size 4096; # 数据块大小 application live { live on; record off; } } ...
Nginx 的配置文件 "nginx.conf" 是管理服务器设置的主要文件。在描述中提到,这个配置文件允许用户手动修改,默认的节点为 "live"。这意味着你可以自定义 RTMP 直播频道,例如创建不同的直播间或者频道。以下是一些...
首先打开Nginx配置文件`nginx.conf`进行编辑: ```nginx user wwwwww; # 指定运行Nginx的用户 worker_processes 8; # 设置工作进程数 error_log /usr/local/nginx/logs/nginx_error.log crit; # 错误日志配置 pid /...
用户访问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.