ngx_ruby 嵌入 ruby 脚本的 Nginx 模块开源项目

我要开发同款
匿名用户2017年06月06日
75阅读
开发技术C/C++
所属分类Nginx扩展模块、服务器软件
授权协议BSD

作品详情

ngx_ruby

ngx_ruby是嵌入ruby脚本的Nginx模块。

环境

ruby-2.3.*

nginx-1.6.3+

安装$ git clone https://github.com/rryqszq4/ngx_ruby.git$ wget 'https://nginx.org/download/nginx-1.6.3.tar.gz'$ tar -zxvf nginx-1.6.3.tar.gz$ cd nginx-1.6.3$ export RUBY_INC=/path/to/ruby/include/ruby-2.3.0$ export RUBY_LIB=/path/to/ruby/lib$ ./configure --user=www --group=www \              --prefix=/path/to/nginx \              --add-module=/path/to/ngx_ruby$ make$ make install摘要

nginxconfig:

user www www;worker_processes  4;events {    worker_connections  1024;}http {    include       mime.types;    default_type  application/octet-stream;    keepalive_timeout  65;    server {        listen       80;        server_name  localhost;            location /content_by_ruby {            content_by_ruby "                time1 = Time.new                Ngx.print('Hello, Ngx_ruby. Current Time : ' + time1.inspect);            ";        }        location /content_by_ruby_file {            content_by_ruby_file /ngx_ruby/t/library/hello.rb;        }    }}
声明:本文仅代表作者观点,不代表本站立场。如果侵犯到您的合法权益,请联系我们删除侵权资源!如果遇到资源链接失效,请您通过评论或工单的方式通知管理员。未经允许,不得转载,本站所有资源文章禁止商业使用运营!
下载安装【程序员客栈】APP
实时对接需求、及时收发消息、丰富的开放项目需求、随时随地查看项目状态

评论