码迷,mamicode.com
首页 > 其他好文 > 详细

centos7上的h5ai折腾记

时间:2019-01-07 10:33:00      阅读:514      评论:0      收藏:0      [点我收藏+]

标签:params   页面   soc   下载地址   打开   blog   安装   zip   layer   

过程:
安装php-fpm和nginx,且经验证二者在其他项目可以正常使用。
从debian8拷贝过来_h5ai的nginx配置如下:

     location ~ [^/]\.php(/|$) {
         fastcgi_pass unix:/var/run/php/php7.1-fpm.sock; #反注释
         include /etc/nginx/snippets/fastcgi-php.conf;
     }

由于centos7服务器上没有/etc/nginx/snippets/fastcgi-php.conf这个文件,所以把这行改成了include fastcgi_params;,即:

# _h5ai file server
server {
    listen  12345;
        # server_name _;
    root /home/chudongyu/rtorrent/download;
        index  index.html  index.php  /_h5ai/public/index.php;

    location / {
        try_files $uri $uri/ /index.php$is_args$args;
    }

    location ~ [^/]\.php(/|$) {
        fastcgi_pass   127.0.0.1:9000;
        include        fastcgi_params;
    }
}

但是_h5ai并不能用,症状:
打开172.19.240.132:12345,只有空白页面,不显示任何东西。检查nginx的日志里面完全正常,没有错误。
在文件夹下建立index.html,发现可以显示,但是建立index.php(<? phpinfo(); ?>)还是一批空白,啥都没有。
折腾良久,最终发现仅仅include fastcgi_params‘是不够的,还要添加:

fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;

完整的正确配置如下

# _h5ai file server
server {
    listen  12345;
        # server_name _;
    root /home/chudongyu/rtorrent/download;
        index  index.html  index.php  /_h5ai/public/index.php;

    location / {
        try_files $uri $uri/ /index.php$is_args$args;
    }

    # location ~ [^/]\.php(/|$) {
    #     fastcgi_pass   127.0.0.1:9000;
    #     include        fastcgi_params;
    # }

    location ~ \.php$ {
            root           /home/chudongyu/rtorrent/download;
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            include        fastcgi_params;
        }
}

参考:https://blog.csdn.net/zsx0728/article/details/81183056

一个视频播放器更好用的_h5ai修改版:
【自用分享】 h5ai HTML5播放器(DPlayer)版
https://www.hostloc.com/thread-438265-1-2.html
直接下载地址: https://www.moerats.com/usr/down/h5ai_dplayer+modified+by+icycat.zip

centos7上的h5ai折腾记

标签:params   页面   soc   下载地址   打开   blog   安装   zip   layer   

原文地址:https://www.cnblogs.com/dylanchu/p/10231256.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!