Skip to content

ngx_php - Embedded php scripting language for nginx module. All released versions of the code repository.

License

Notifications You must be signed in to change notification settings

rryqszq4/ngx_php

Repository files navigation

ngx_php5

Build StatusGitterGitHub releaselicenseQQ group

ngx_php - Embedded php script language for nginx-module.
ngx_php7 - Embedded php7 programming language for nginx-module.

Requirement

  • PHP 5.5.* ~ PHP 5.6.*
  • nginx-1.7.12 ~ nginx-1.11.8

Installation

build php

$ wget 'http://php.net/distributions/php-5.6.30.tar.gz' $ tar xf php-5.6.30.tar.gz $ cd php-5.6.30 $ ./configure --prefix=/path/to/php \ $ --enable-embed $ make && make install

build ngx_php

$ git clone https://github.com/rryqszq4/ngx_php.git $ wget 'http://nginx.org/download/nginx-1.7.12.tar.gz' $ tar xf nginx-1.7.12.tar.gz $ cd nginx-1.7.12 $ export PHP_BIN=/path/to/php/bin $ export PHP_INC=/path/to/php/include/php $ export PHP_LIB=/path/to/php/lib $ ./configure --user=www --group=www \ $ --prefix=/path/to/nginx \ $ --with-ld-opt="-Wl,-rpath,$PHP_LIB" \ $ --add-module=/path/to/ngx_php/dev/ngx_devel_kit \ $ --add-module=/path/to/ngx_php $ make && make install

Synopsis

user www www;worker_processes 4;events{worker_connections1024;}http{include mime.types;default_type application/octet-stream;keepalive_timeout65;client_max_body_size10m;client_body_buffer_size4096k; php_ini_path /usr/local/php/etc/php.ini;server{listen80;server_name localhost;location /php { content_by_php ' echo "hello ngx_php"; ';}}}

Test

Using the perl of Test::Nginx module to testing, searching and finding out problem in ngx_php.

cd /path/to/ngx_php export PATH=/path/to/nginx/sbin:$PATH prove -r t

Test result:

t/001-hello.t ........... ok t/008-error.t ........... ok t/200-rewrite_by_php.t .. ok t/202-access_by_php.t ... ok t/204-content_by_php.t .. ok All tests successful. Files=5, Tests=22, 2 wallclock secs ( 0.04 usr 0.01 sys + 0.65 cusr 0.32 csys = 1.02 CPU) Result: PASS

Directives

php_ini_path

  • syntax:php_ini_path<php.ini file path>
  • context:http
  • phase:loading-config

Loading php configuration file in nginx configuration initialization.

php_ini_path /usr/local/php/etc/php.ini;

init_by_php

  • syntax:init_by_php<php script code>
  • context:http
  • phase:loading-config

In nginx configuration initialization or boot time, run some php scripts.

init_by_php_file

  • syntax:init_by_php_file<php script file>
  • context:http
  • phase:loading-config

In nginx configuration initialization or boot time, run some php script file.

rewrite_by_php

  • syntax:rewrite_by_php<php script code>
  • context:http, server, location, location if
  • phase:rewrite

Use php script redirect in nginx rewrite stage of.

location /rewrite_by_php { rewrite_by_php " echo "rewrite_by_php"; header('Location: http://www.baidu.com/'); ";}

rewrite_by_php_file

  • syntax:rewrite_by_php_file<php script file>
  • context:http, server, location, location if
  • phase:rewrite

Use php script file, redirect in nginx rewrite stage of.

access_by_php

  • syntax:access_by_php<php script code>
  • context:http, server, location, location if
  • phase:access

Nginx in the access phase, the php script determine access.

access_by_php_file

  • syntax:access_by_php_file<php script file>
  • context:http, server, location, location if
  • phase:access

Nginx in the access phase, the php script file Analyzing access.

content_by_php

  • syntax:content_by_php<php script code>
  • context:http, server, location, location if
  • phase:content

Most central command, run php script nginx stage of content.

location /content_by_php { content_by_php " header('Content-Type: text/html;charset=UTF-8'); echo phpinfo(); ";}

content_by_php_file

  • syntax:content_by_php_file<php script file>
  • context:http, server, location, location if
  • phase:content

Most central command, run php script file nginx stage of content.

location /content_by_php_file { content_by_php_file /home/www/index.php;}

log_by_php

  • syntax:log_by_php<php script code>
  • context:http, server, location, location if
  • phase:log

log_by_php_file

  • syntax:log_by_php_file<php script file>
  • context:http, server, location, location if
  • phase:log

set_by_php

  • syntax:set_by_php<php script code>
  • context:server, server if, location, location if
  • phase:content

set_run_by_php

  • syntax:set_run_by_php<php script code>
  • context:server, server if, location, location if
  • phase:content

set_by_php_file

  • syntax:set_by_php_file<php script file>
  • context:server, server if, location, location if
  • phase:content

set_run_by_php_file

  • syntax:set_run_by_php_file<php script file>
  • context:server, server if, location, location if
  • phase:content

Nginx API for php

ngx::_exit

  • syntax:ngx::_exit(int $status)
  • context:content_by_php
echo"start\n"; ngx::_exit(200); echo"end\n";

ngx_log::error

  • syntax:ngx_log::error(int level, string log)
  • context:content_by_php

Nginx log of level in php.

  • NGX_LOG_STDERR
  • NGX_LOG_EMERG
  • NGX_LOG_ALERT
  • NGX_LOG_CRIT
  • NGX_LOG_ERR
  • NGX_LOG_WARN
  • NGX_LOG_NOTICE
  • NGX_LOG_INFO
  • NGX_LOG_DEBUG
ngx_log::error(NGX_LOG_ERR, "test"); /* 2016/10/06 22:10:19 [error] 51402#0: *1 test while reading response header from upstream, client: 192.168.80.1,  server: localhost, request: "GET /_mysql HTTP/1.1", upstream: "127.0.0.1:3306", host: "192.168.80.140"*/

Copyright and License

Copyright (c) 2016-2017, rryqszq4 <[email protected]> All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 

About

ngx_php - Embedded php scripting language for nginx module. All released versions of the code repository.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published