
Nginx
牛刀杀鸡
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
nginx启动/关闭/重启
windows下: restart.bat @echo off tskill nginx nginx.exe -t nginx.exe -v start nginx.exe echo nginx已启动。 pause start.bat @echo off nginx.exe -t nginx.exe -v start nginx.exe echo nginx原创 2015-01-10 01:10:32 · 620 阅读 · 0 评论 -
NGINX + LUA实现复杂的控制
转自http://outofmemory.cn/code-snippet/14396/nginx-and-lua lua_nginx_module 可以一步步的安装,也可以直接用淘宝的OpenResty Centos和debian的安装就简单了。。 这里说下freebsd的安装: fetch http://www.lua.org/ftp/lua-5.1.4.tar.gz tar转载 2015-01-10 23:33:27 · 4219 阅读 · 0 评论 -
Nginx模块开发
转自Blog.youkuaiyun.com/Poechant 只记录实现的细节,具体可以参看: http://blog.youkuaiyun.com/poechant/article/details/7627828以及http://tengine.taobao.org/book/index.html 首先要明确,我们的文件和目录结构: ngx_http_hello_world_module |转载 2015-01-11 00:26:31 · 412 阅读 · 0 评论 -
nginx端口转发tomcat,80转8080和8433
server { listen 80; server_name localhost; root /usr/local/webserver/nginx/html; index index.html index.htm index.php; #80转8080: lo原创 2015-01-12 12:56:56 · 6150 阅读 · 0 评论