蔬菜小程序的开发全流程详解
608
2022-09-26
Centos7.6手工安装showdoc
cd /opt/git clone 777
安装php依赖,接上文安装php7.2
cd /usr/local/src/php-7.2.32/ext
安装phpize
yum install
生成gcc编译文件phpize
安装依赖并编译
yum install libjpeg-develyum install libpng-develyum install freetype-devel./configure --with-php-config=/usr/local/php/bin/php-config --with-png-dir --with-freetype-dir --with-jpeg-dir
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 restartnginx -s reload
访问 http://xxx.xxx.xxx.xxx:81/index.php
依次执行,安装后效果如下
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~