ChinaUnix.net
相关文章推荐:

nginx

Nginx安装配置stub_status Nginx中的stub_status模块主要用于查看Nginx的一些状态信息. 本模块默认是不会编译进Nginx的,如果你要使用该模块,则要在编译安装Nginx时指定: ./configure –with-http_stub_status_module 查看已安装的 Nginx 是否包含 stub_status 模块 #/usr/local/nginx/sbin/nginx -V nginx version: nginx/1.0.5 built by gcc 5.4.6 20120404 (Centos 6.2) configure arguments: --user=ng...

by osapub - OSA开源监控 - 2013-05-16 16:27:56 阅读(1454) 回复(0)

相关讨论

nginx中的worker_connections 是根据什么设置,请高手解答

by mengchang - 服务器应用 - 2012-08-28 10:18:53 阅读(1790) 回复(0)

如何实现访问 www.test.com 跳转到 http://ent.test.com/plateform/index!main.do 访问www.test.com 不显示 http://ent.test.com/plateform/index!main.do

by mitmax - 服务器应用 - 2009-12-30 17:42:07 阅读(1628) 回复(7)

利用Nginx替代apache实现高性能的Web环境 上一篇 / 下一篇 2007-11-04 22:54:30 / 精华(3) / 个人分类: Server 查看( 147 ) / 评论( 23 ) 利用Nginx替代apache实现高性能的Web环境 作者:NetSeek 欢迎转载,转载请注明出处: http://bbs.linuxpk.com 原文链接: http://bbs.linuxpk.com/thread-11845-1-1.html Nginx介绍: Nginx发音为[engine x],是由俄罗斯人Igor Sysoev建立的项目,基于BSD许...

by jakback - Linux文档专区 - 2008-04-15 17:00:26 阅读(2062) 回复(0)

许久没在CU发贴了..最近在搞docker...就发个nginx的Dockerfile吧[code]############################################################ # Dockerfile to build Nginx Installed Containers # Based on Offical Centos7.2 ############################################################ # Set the base image to Centos FROM centos # Author / Maintainer MAINTAINER chenqh@inno-view.com # Set locale ENV LANG en_US.UTF-8 ...

by 非凡公子 - Docker - 2016-07-23 11:11:39 阅读(6437) 回复(0)

本帖最后由 framily 于 2015-08-05 13:20 编辑 [code][/code][code]#include #include #include /* Module config */ typedef struct { ngx_str_t ed; } ngx_http_echo_loc_conf_t; static char *ngx_http_echo(ngx_conf_t *cf, ngx_command_t *cmd, void *conf); static void *ngx_http_echo_create_loc_conf(ngx_conf_t *cf); static char *ngx_http_echo_merge_loc_conf(ngx_co...

by framily - C/C++ - 2015-08-06 11:59:47 阅读(1436) 回复(3)

在nginx配置的路径下新建一个php文件,访问的时候出现404,是什么原因?但是访问该目录下原先已经存在的文件就是正常的!

by td901105 - PHP - 2015-05-05 17:54:58 阅读(1473) 回复(1)

这个需求比较特殊,一台wab服务器只可以内网访问(没开外网监听),想用另一台nginx外网访问做转发把请求转发到内网 proxy_pass http://x.x.x.x;就是这个意思 访问外网时提示“502 Bad Gateway”,想想也是,这时转发肯定是用外网地址,肯定是找不到目的地址,不知道nginx转发请求时可不可以指定转发源地址。

by yiguihuo - Linux系统管理 - 2015-03-09 10:16:00 阅读(1204) 回复(6)

这家伙在干什么,这个网站是个私服,这家伙实在常识把私服挂进我的网站吗? 另外不太懂nginx,有什么日志分析的学习资料。

by cc7756789w - Linux系统管理 - 2015-02-28 15:30:19 阅读(1333) 回复(4)

nginx 的location语法谁比较熟悉吗? location /flv/ ~ \.flv { alias /flv/; flv; } 上面这样写是错的。 看了文档,写法都是分开的,要么是 location ~ \.flv { flv; } 要么是 location /flv/ { alias /flv/; } 但是分开写达不到效果,请问怎么整合呢?

by 微易散 - 服务器应用 - 2013-09-29 15:58:13 阅读(1046) 回复(0)

最近在nginx日志里看到一个 比较怪异的 日志 10.15.7.61:11527 61.164.42.147 [01/Aug/2013:13:30:39 +0800] 日志格式: log_format referer "$http_x_forwarded_for" ' ' "$http_client_ip" ' ' "[$time_local]" ' ' "$request" ' ' "$status" ' ' "$body_bytes_sent" ' ' "$http_referer" ' ' "$http_user_agent"; 还带有端口的。哪位大神 能解释一下。

by strong_sjhi - Linux系统管理 - 2013-08-03 09:36:07 阅读(1808) 回复(3)