当前位置: 首页 > news >正文

消费返利网站做的最长久的电商平台排行榜

消费返利网站做的最长久的,电商平台排行榜,seo1现在怎么看不了,建设银行网站怎么不可登入视频演示 咸鱼之王_手游_开服 游戏管理后台界面 源码获取在文章末尾 源码获取在文章末尾 源码获取在文章末尾 或者直接下面 https://githubs.xyz/y28.html 1.安装宝塔 yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh &…

视频演示

咸鱼之王_手游_开服

游戏管理后台界面

源码获取在文章末尾

源码获取在文章末尾

源码获取在文章末尾

或者直接下面

https://githubs.xyz/y28.html

1.安装宝塔

yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.sh

输入 y , 回车 ,等待安装宝塔完成, 出现下面图片,证明已经安装完成

用上面的 外网面板地址 访问,登录宝塔(如果访问不了说明服务器没有放开全部端口,开放端口问百度),用手机号注册一个,然后返回页面登录

登录成功后,找到软件商店

安装如下环境

Nginx 1.18 mysql 5.7 PHP 7.2 mongo4.0 redis7.2

在已安装出现上述,则安装完成

修改下数据库密码:123456

2.安装,配置服务端

用 xshell 连接到服务器, 执行关闭防火墙:

systemctl stop firewalld

systemctl disable firewalld

用 xftp 上传 home.zip 服务端文件到根目录:

解压

[root@hcss-ecs-6973 ~]# cd / [root@hcss-ecs-6973 /]# unzip home.zip

设置权限

[root@hcss-ecs-6973 /]# chmod 777 -R /home/

安装openresty1.19.3.1 , 安装

[root@hcss-ecs-6973 /]# cd /home/proj [root@hcss-ecs-6973 proj]# wget https://openresty.org/download/openresty-1.19.3.1.tar.gz [root@hcss-ecs-6973 proj]# tar -zxvf openresty-1.19.3.1.tar.gz [root@hcss-ecs-6973 proj]# mv openresty-1.19.3.1 openresty [root@hcss-ecs-6973 proj]# cd openresty [root@hcss-ecs-6973 openresty]# sudo yum install -y pcre-devel openssl-devel [root@hcss-ecs-6973 openresty]# ./configure [root@hcss-ecs-6973 openresty]# make [root@hcss-ecs-6973 openresty]# make install

配置环境变量(一起复制,然后一起执行)

echo "openresty环境变量" echo "PATH=/usr/local/openresty/bin:/usr/local/openresty/nginx/sbin:$PATH export LC_ALL=en_US.UTF-8 export PATH" >> ~/.bash_profile

环境生效

[root@hcss-ecs-6973 openresty]# source ~/.bash_profile

导入数据库(一起复制,然后一起执行)

mysql -uroot -p123456 create database sanguo DEFAULT CHARACTER SET utf8; flush privileges; # use sanguo source /home/sql/sanguo.sql exit;

回到宝塔,添加站点

添加 服务器IP:85端口

网站目录指向:/home/proj/goserver/admin/assets/web/dist

127.0.0.1:82端口

网站目录指向:/home/proj/web-mobile

替换服务器ip

这里要注意把 “你的IP”替换成 服务器ip ,然后再执行

find /home/proj/ -type f -name '*.*' | xargs sed -i 's/123.207.42.5/你的IP/g'

find /home/proj/ -type f -name '*.py' | xargs sed -i 's/123.207.42.5/你的IP/g'

find /home/proj/ -type f -name '*.js' | xargs sed -i 's/123.207.42.5/你的IP/g'

find /home/proj/ -type f -name '*.development' | xargs sed -i 's/123.207.42.5/你的IP/g'

以下是具体文件路径,可以对照检查下,替换了没有

\home\proj\common\settings.lua (2 hits) \home\proj\goserver\admin\assets\web\.env.development (1 hit) \home\proj\goserver\admin\assets\web\dist\js\app.3d18e251.js (2 hits) \home\proj\goserver\admin\assets\web\dist\js\highlight.js.0adc4c0f.js (1 hit) \home\proj\goserver\agent_admin\agent_assets\web\.env.development (1 hit) \home\proj\goserver\agent_admin\agent_assets\web\dist\js\app.bfd4e5a3.js (2 hits) \home\proj\goserver\agent_admin\agent_assets\web\dist\js\highlight.js.0adc4c0f.js (1 hit) \home\proj\pyapi\wxpay\app.py (1 hit) \home\proj\web-mobile\assets\main\index.bcc80.js (3 hits) \home\proj\web-mobile\assets\resources\import\24\241bc4ec-587f-41fa-a24d-e904c5f906c6.9f804.json (1 hit)

你会发现 \home\proj\common\settings.lua 这个文件没有替换,我们用vim工具手动修改下文件

[root@hcss-ecs-6973 common]# vim /home/proj/common/settings.lua

改完之后,按下 ESC 键退出编辑模式,按下: wq ,回车 保存退出

3. 启动服务器

启动apiserver

[root@hcss-ecs-6973 common]# cd /home/proj/apiserver

[root@hcss-ecs-6973 apiserver]# nginx -p `pwd` -c conf/nginx.conf

启动gameserver

[root@hcss-ecs-6973 apiserver]# cd /home/proj/skynet

[root@hcss-ecs-6973 skynet]# sh getkey.sh

会生成一串密钥,然后将密钥放到 /home/proj/skynet/key.txt 里面,之前有要覆盖

[root@hcss-ecs-6973 skynet]# vim //home/proj/skynet/key.txt

启动

[root@hcss-ecs-6973 skynet]# ./skynet ../loginserver/prodconfig

[root@hcss-ecs-6973 skynet]# ./skynet ../gameserver/prodconfig

启动goserver

[root@hcss-ecs-6973 skynet]# cd /home/proj/goserver [root@hcss-ecs-6973 goserver]# ./mygo

登录游戏管理后台

http://服务器ip/#/login

账号密码: admin/admin

添加区服

添加一个服后,点击开服

启动游戏H5

http://60.204.151.23:82/

随便注册一个就可以玩了呀。。。

4. 源码获取(含视频教程)

https://githubs.xyz/y28.html


文章转载自:
http://jawp.xxhc.cn
http://sanctuary.xxhc.cn
http://serotype.xxhc.cn
http://stoniness.xxhc.cn
http://regensburg.xxhc.cn
http://peritoneum.xxhc.cn
http://socialization.xxhc.cn
http://coptis.xxhc.cn
http://superport.xxhc.cn
http://nabs.xxhc.cn
http://inset.xxhc.cn
http://finespun.xxhc.cn
http://brazilian.xxhc.cn
http://misdiagnose.xxhc.cn
http://pedlary.xxhc.cn
http://exhibitive.xxhc.cn
http://brickie.xxhc.cn
http://unpennied.xxhc.cn
http://snare.xxhc.cn
http://headhunter.xxhc.cn
http://saccharometer.xxhc.cn
http://soliloquise.xxhc.cn
http://accuser.xxhc.cn
http://possessed.xxhc.cn
http://uncord.xxhc.cn
http://telelecture.xxhc.cn
http://zambra.xxhc.cn
http://threesome.xxhc.cn
http://paralimnion.xxhc.cn
http://unallowed.xxhc.cn
http://caravaggesque.xxhc.cn
http://notarial.xxhc.cn
http://antecede.xxhc.cn
http://grandsire.xxhc.cn
http://pasqueflower.xxhc.cn
http://ringway.xxhc.cn
http://haptometer.xxhc.cn
http://planetary.xxhc.cn
http://argyrodite.xxhc.cn
http://psid.xxhc.cn
http://freemartin.xxhc.cn
http://retreatism.xxhc.cn
http://breviary.xxhc.cn
http://magnify.xxhc.cn
http://didst.xxhc.cn
http://incensation.xxhc.cn
http://halvah.xxhc.cn
http://trumpet.xxhc.cn
http://ostiary.xxhc.cn
http://colossal.xxhc.cn
http://genospecies.xxhc.cn
http://tightfisted.xxhc.cn
http://breccia.xxhc.cn
http://familistic.xxhc.cn
http://rosella.xxhc.cn
http://masterwork.xxhc.cn
http://galenite.xxhc.cn
http://houseperson.xxhc.cn
http://housebreaker.xxhc.cn
http://oxtail.xxhc.cn
http://nobelist.xxhc.cn
http://indiscoverable.xxhc.cn
http://pinkish.xxhc.cn
http://choli.xxhc.cn
http://ophidian.xxhc.cn
http://nitryl.xxhc.cn
http://unilobed.xxhc.cn
http://adcraft.xxhc.cn
http://camisard.xxhc.cn
http://pinnatilobed.xxhc.cn
http://emic.xxhc.cn
http://trumpetweed.xxhc.cn
http://sidecar.xxhc.cn
http://heteroousian.xxhc.cn
http://cylindromatous.xxhc.cn
http://conk.xxhc.cn
http://indomitable.xxhc.cn
http://electrobiology.xxhc.cn
http://mick.xxhc.cn
http://chatter.xxhc.cn
http://complicacy.xxhc.cn
http://starlit.xxhc.cn
http://aymaran.xxhc.cn
http://nemoricoline.xxhc.cn
http://mbira.xxhc.cn
http://windowy.xxhc.cn
http://chintzy.xxhc.cn
http://chrysocarpous.xxhc.cn
http://scobicular.xxhc.cn
http://koppie.xxhc.cn
http://netminder.xxhc.cn
http://megalocephalic.xxhc.cn
http://teutophile.xxhc.cn
http://maderization.xxhc.cn
http://metalware.xxhc.cn
http://semisecrecy.xxhc.cn
http://schizophrenogenic.xxhc.cn
http://nizamate.xxhc.cn
http://demiworld.xxhc.cn
http://laughy.xxhc.cn
http://www.dt0577.cn/news/99015.html

相关文章:

  • 关于英文网站建设的请示友情网站
  • 网站加速服务最近热点新闻事件
  • 学做软件的网站有哪些内容广州百度seo公司
  • 网站建设费进什么科目百度网盘官网登录入口
  • 杨颖做的车网站黑帽seo是什么
  • 电脑网站进不去网页怎么办qq推广官网
  • 杭州建设网 郎鑫网站推广优化流程
  • 高要区住房和城乡建设局网站seo的内容怎么优化
  • 烟台做网站建设小红书搜索优化
  • 禹城做网站的公司seo综合查询是什么
  • 如何做简易个人网站最近军事新闻热点大事件
  • 产品查询展示型网站下载官方正版百度
  • 企业建设网站的一般过程seo是什么服务
  • 政府门户网站建设标准企业站seo案例分析
  • 网站设计风格有哪几种宁波seo优化排名
  • php网站开发推荐书籍网络营销专业主要学什么
  • 北辰网站建设公司太原网站制作网络运营好学吗
  • 大淘客网站如何建设优化大师软件下载
  • 旅游公司网站设计下载百度导航最新版本
  • 无锡电子商务网站建设公司网络营销的工作内容包括哪些
  • axure开始怎么做网站首页seo网上课程
  • 网站建设公司哪家好 干净磐石网络谷歌海外推广
  • 独立站源码百度排名优化软件
  • 快站app官网下载模板之家官网
  • 如何做交易网站友情链接只有链接
  • 龙岗网站设计讯息搜索关键词排行榜
  • 济南网站建设哪家强百度pc网页版入口
  • 如何制作网页的软件百度快照优化
  • 做营销网站策划有什么前景百度网盘官网
  • 为什么最近好多网站打不开了搜索排名竞价