最近用宝塔部署了一个项目,中间真实一波三折,这里记录一下我的部署过程,服务器是centos。
宝塔安装
首先安装宝塔:
yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.sh
后端配置
安装完后会跟你显示网址和密码,利用网址,用户名和密码就可以登录进去了。
安装如图所示的软件,然后把php后端传到服务器上,具体传的目录是:
/www/wwwroot
这个是我需要部署的两个代码,http里面包含的是thinkphp的代码,socket包含的是另一份后端代码,首先运行socket里面的代码:
cd /www/wwwroot/im/socket
php start.php start
然后配置thinkphp部分:
这是几个重要的配置。
然后是php的配置,php安装扩展fileinfo redis Swoole4 mongodb 删除全部禁用函数
前端配置
打包uniapp前端:
上传到服务器的nginx目录下:
/www/server/nginx/html
[root@localhost html]# pwd
/www/server/nginx/html
[root@localhost html]# ls
50x.html h5 h5.zip index.bak.html index.html static
[root@localhost html]#
我放在这里的,static文件夹和index.html
放好了之后就可以通过在浏览器输入ip访问了。
关于这个前端放到哪儿我踩了好久,最后发现放到nginx就行了,wwwroot放php那些文件就可以了,这里记录一下,避免以后踩坑。