环境
-PHP5.3.* PHP5.4.* PHP5.5.* PHP5.6.*-nginx-1.4.7 nginx-1.6.3 nginx-1.8.1 nginx-1.9.15
安装
gitclonehttps://github.com/rryqszq4/ngx_php.gitwget'https://nginx.org/download/nginx-1.6.3.tar.gz'tar-zxvfnginx-1.6.3.tar.gzcdnginx-1.6.3exportPHP_BIN=/path/to/php/binexportPHP_INC=/path/to/php/include/phpexportPHP_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概要userwwwwww;worker_processes 4;events{ worker_connections 1024;}http{ include mime.types; default_type application/octet-stream; keepalive_timeout 65; client_max_body_size10m; client_body_buffer_size4096k; php_ini_path/usr/local/php/etc/php.ini; server{ listen 80; server_name localhost; location/php{ content_by_php' echo"hellongx_php"; '; } }}
评论