zoukankan      html  css  js  c++  java
  • Centos7.6手工安装showdoc

    cd /opt/
    git clone https://github.com/star7th/showdoc.git


    #(慎用,应该指定到特定用户组)

    chmod 777 /opt/showdoc

    安装php依赖,接上文安装php7.2

    cd /usr/local/src/php-7.2.32/ext

    安装phpize

    yum install php-devel

    生成gcc编译文件
    phpize

    安装依赖并编译

    yum install libjpeg-devel
    yum install libpng-devel
    yum install freetype-devel
    
    ./configure --with-php-config=/usr/local/php/bin/php-config --with-png-dir --with-freetype-dir --with-jpeg-dir --with-gd

     make&&make install

    以后如下

     然后修改php.ini

    vim /etc/php.ini

    添加

    extension=gd

     配置nginx(网上很多傻逼就写了一点点,坑死我了)

       server {
          listen 81;
          # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
          #
          location / {
            root /opt/showdoc;
            index index.php index.html index.htm;
          }
          location ~ .php$ {
             root           /opt/showdoc;
             fastcgi_pass   127.0.0.1:9000;
             fastcgi_index  index.php;
             fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
             include        fastcgi_params;
          }
        }

    重启服务

    service php-fpm restart
    
    nginx -s reload

    访问 http://xxx.xxx.xxx.xxx:81/index.php

    依次执行,安装后效果如下

    本博客文章绝大多数为原创,少量为转载,代码经过测试验证,如果有疑问直接留言或者私信我。
    创作文章不容易,转载文章必须注明文章出处;如果这篇文章对您有帮助,点击右侧打赏,支持一下吧。
  • 相关阅读:
    【寒假集训系列DAY.1】
    【专题系列】单调队列优化DP
    【DP悬线法】奶牛浴场
    [DP专题]悬线法
    【牛客网周赛32】个人解题思路
    【专题】概率期望DP
    牛客练习赛41D(思维转化)
    洛谷3199(01分数规划、判负环)
    洛谷4377(01分数规划)
    ZOJ3068(01分数规划)
  • 原文地址:https://www.cnblogs.com/passedbylove/p/13403136.html
Copyright © 2011-2022 走看看