• php+nginx 整合


    php编译 

    https://www.cnblogs.com/php-linux/p/12360858.html

    nginx编译

    https://www.cnblogs.com/php-linux/p/12360671.html

    整合两者

    vim /usr/local/nginx/conf/nginx.conf

    http {
        include       mime.types;
        default_type  application/octet-stream;
        
        #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
        #                  '$status $body_bytes_sent "$http_referer" '
        #                  '"$http_user_agent" "$http_x_forwarded_for"';
    
        
        sendfile        off;
        
        keepalive_timeout  65;
    
        
        server {
            listen       80;
            server_name  test.com;
            root /www/wang;
            index index.html index.htm index.php;
            error_page   500 502 503 504  /50x.html;
            location = /50x.html {
                root   html;
            }
            
            location / {
                    try_files $uri $uri/ /index.php$is_args$args;
             }
    
            location ~ .php$ {
                try_files $uri =404;
                fastcgi_pass   127.0.0.1:9000;
                fastcgi_index  index.php;
                include        fastcgi.conf;
            }
            access_log  /tmp/access.log;
            error_log /tmp/error.log;
        }
    
    
    }
    

      

    访问后报错 Nginx报 No input file specified

    查看error.log 

    2020/02/25 04:48:33 [error] 27206#0: *66 FastCGI sent in stderr: "PHP message: PHP Warning:  Unknown: open_basedir restriction in effect. File(/www/wang/index.php) is not within the allowed path(s): (/phpwww/wang/:/tmp/:/proc/) in Unknown on line 0
    PHP message: PHP Warning:  Unknown: failed to open stream: Operation not permitted in Unknown on line 0
    Unable to open primary script: /www/wang/index.php (Operation not permitted)" while reading response header from upstream, client: 192.168.50.1, server: test.com, request: "GET /index.php HTTP/1.1", upstream: "fastcgi://127.0.0.1:9000", host: "test.com"
    

      通过修改php.ini可以解决

    一、php.ini 修改方法

    把权限作用域由入口文件目录修改为框架根目录

    打开 php.ini 搜索 open_basedir,把

    1. open_basedir = "/home/wwwroot/tp5/public/:/tmp/:/var/tmp/:/proc/"

    修改为

    1. open_basedir = "/home/wwwroot/tp5/:/tmp/:/var/tmp/:/proc/"

    对很多人而言,配置Nginx+PHP无外乎就是搜索一篇教程,然后拷贝粘贴。听上去似乎也没什么问题,可惜实际上网络上很多资料本身年久失修,漏洞百出,如果大家不求甚解,一味的拷贝粘贴,早晚有一天会为此付出代价。

    假设我们用PHP实现了一个前端控制器,或者直白点说就是统一入口:把PHP请求都发送到同一个文件上,然后在此文件里通过解析「REQUEST_URI」实现路由。

    此时很多教程会教大家这样配置Nginx+PHP:

    复制代码
    复制代码
    server {
        listen 80;
        server_name foo.com;
    
        root /path;
    
        location / {
            index index.html index.htm index.php;
    
            if (!-e $request_filename) {
                rewrite . /index.php last;
            }
        }
    
        location ~ .php$ {
            include fastcgi_params;
            fastcgi_param SCRIPT_FILENAME /path$fastcgi_script_name;
            fastcgi_pass 127.0.0.1:9000;
            fastcgi_index index.php;
        }
    }
    复制代码
    复制代码

    这里面有很多错误,或者说至少是坏味道的地方,大家看看能发现几个。

    我们有必要先了解一下Nginx配置文件里指令的继承关系:Nginx配置文件分为好多块,常见的从外到内依次是「http」、「server」、「location」等等,缺省的继承关系是从外到内,也就是说内层块会自动获取外层块的值作为缺省值(有例外,详见参考)。

    让我们先从「index」指令入手吧,在问题配置中它是在「location」中定义的:

    location / {
        index index.html index.htm index.php;
    }

    一旦未来需要加入新的「location」,必然会出现重复定义的「index」指令,这是因为多个「location」是平级的关系,不存在继承,此时应该在「server」里定义「index」,借助继承关系,「index」指令在所有的「location」中都能生效。

    接下来看看「if」指令,说它是大家误解最深的Nginx指令毫不为过:

    if (!-e $request_filename) {
        rewrite . /index.php last;
    }

    很多人喜欢用「if」指令做一系列的检查,不过这实际上是「try_files」指令的职责:

    try_files $uri $uri/ /index.php;

    除此以外,初学者往往会认为「if」指令是内核级的指令,但是实际上它是rewrite模块的一部分,加上Nginx配置实际上是声明式的,而非过程式的,所以当其和非rewrite模块的指令混用时,结果可能会非你所愿。

    下面看看「fastcgi_params」配置文件:

    include fastcgi_params;

    Nginx有两份fastcgi配置文件,分别是「fastcgi_params」和「fastcgi.conf」,它们没有太大的差异,唯一的区别是后者比前者多了一行「SCRIPT_FILENAME」的定义:

    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

    注意:$document_root 和 $fastcgi_script_name 之间没有 /。

    原本Nginx只有「fastcgi_params」,后来发现很多人在定义「SCRIPT_FILENAME」时使用了硬编码的方式,于是为了规范用法便引入了「fastcgi.conf」。

    不过这样的话就产生一个疑问:为什么一定要引入一个新的配置文件,而不是修改旧的配置文件?这是因为「fastcgi_param」指令是数组型的,和普通指令相同的是:内层替换外层;和普通指令不同的是:当在同级多次使用的时候,是新增而不是替换。换句话说,如果在同级定义两次「SCRIPT_FILENAME」,那么它们都会被发送到后端,这可能会导致一些潜在的问题,为了避免此类情况,便引入了一个新的配置文件。

    此外,我们还需要考虑一个安全问题:在PHP开启「cgi.fix_pathinfo」的情况下,PHP可能会把错误的文件类型当作PHP文件来解析。如果Nginx和PHP安装在同一台服务器上的话,那么最简单的解决方法是用「try_files」指令做一次过滤:

    try_files $uri =404;

    依照前面的分析,给出一份改良后的版本,是不是比开始的版本清爽了很多:

    复制代码
    复制代码
    server {
        listen 80;
        server_name foo.com;
    
        root /path;
        index index.html index.htm index.php;
    
        location / {
            try_files $uri $uri/ /index.php$is_args$args;
        }
    
        location ~ .php$ {
            try_files $uri =404;
    
            include fastcgi.conf;
            fastcgi_pass 127.0.0.1:9000;
        }
    }
    复制代码
    复制代码

    实际上还有一些瑕疵,主要是「try_files」和「fastcgi_split_path_info」不够兼容,虽然能够解决,但方案比较丑陋,具体就不多说了

    补充:因为「location」已经做了限定,所以「fastcgi_index」其实也没有必要。

    文章转自:https://huoding.com/2013/10/23/290

    正心投入专注
  • 相关阅读:
    Centos7 安装Postgres11(更改数据目录)
    将trj保存成.gpx文件方便进行地图匹配(来自徐博士的支援)
    将北京路网OSM文件导入到PostgreSQL + PostGIS 中,并利用osm2pgrouting工具+osmosis工具构建路网Graph拓扑结构
    SQL-时间-UTC-时间戳-日期-年查询在PG+PostGIS
    地理坐标系4326--投影坐标系3857/2436
    基于postgis时空查询-记录而已
    Java 接口
    单例模式
    weblogic启动一闪而过
    oracle存储过程中is和as区别
  • 原文地址:https://www.cnblogs.com/brady-wang/p/12361151.html
Copyright © 2020-2023  润新知