摘要: nginx 安装 yum install -y epel-release yum install nginx -y systemctl start nginx systemctl enable nginx /etc/nginx/nginx.conf 在http节点下面添加 map 并注释掉 默认监听 阅读全文
posted @ 2022-05-31 01:32 小谭行天下 阅读(149) 评论(0) 推荐(0) 编辑
摘要: # yum install epel-release # yum install -y supervisor # systemctl enable supervisord # 开机自启动 # systemctl start supervisord # 启动supervisord服务 将supervi 阅读全文
posted @ 2022-05-30 18:42 小谭行天下 阅读(461) 评论(0) 推荐(0) 编辑
摘要: yum 默认安装的是很老的 redis,新版 redis 增加了很多新功能,需要手动指定 yum 源才能安装最新版 redis 首先,卸载旧版本 redis $ sudo yum -y remove redis Bash 更新 yum $ sudo yum -y update Bash 添加 yum 阅读全文
posted @ 2022-05-30 03:01 小谭行天下 阅读(2066) 评论(0) 推荐(0) 编辑
摘要: Installing MariaDB Server 10.4 To deploy MariaDB Community Server 10.4 on RHEL 7 or CentOS 7, first download and use the mariadb_repo_setup script to 阅读全文
posted @ 2022-05-30 02:26 小谭行天下 阅读(277) 评论(0) 推荐(0) 编辑
摘要: /* eslint-disable */ /** * 根据环境变量初始化一些第三方库需要的key */ const { m: target } = require('yargs').argv const { OPENINSTALL_APPKEY } = require('../configs').a 阅读全文
posted @ 2021-03-17 12:50 小谭行天下 阅读(72) 评论(0) 推荐(0) 编辑
摘要: Cordova+vue项目打包ios运行上下滑动出现空白解决方法(webview)这是cordova项目打包ios后出现页面往上滑,或者往下滑的时候,一旦滚到边界的时候,在接着滚到的时候便会出现白块,查了很多资料,最后解决了,把方法分享出来!先上图 这是cordova+vue的项目结构 修改图中标注 阅读全文
posted @ 2021-03-05 16:33 小谭行天下 阅读(614) 评论(1) 推荐(0) 编辑
摘要: 一 证书申请 参考: https://zhuanlan.zhihu.com/p/69162456 基本参考上面的文件 不过苹果开发者中心的页面已经有所变化, 参考时候注意下 一、概念 总览 我们都知道开发一款应用需要配置苹果常用证书、AppId,Provisioning Profiles,如果有推送 阅读全文
posted @ 2021-02-08 10:43 小谭行天下 阅读(2206) 评论(0) 推荐(0) 编辑
摘要: 需求点 : 产品给的设计图是750px宽度的 要求适配所有机型的移动端 参考 https://www.cnblogs.com/wtsx-2019/p/12656554.html 移动端vue配置 REM 适配 设计图给的 使用px作为单位,如果需要使用rem单位,推荐使用以下两个工具: postcs 阅读全文
posted @ 2021-01-14 21:04 小谭行天下 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 极客时间 玩转webpack学习记录 github地址: https://github.com/worldtanjj/geektime-webpack-course 只介绍常用的 plugin和loader 具体用法google或者看github实例 解析 es6 用 babel-loader 解析 阅读全文
posted @ 2020-12-01 00:24 小谭行天下 阅读(102) 评论(0) 推荐(0) 编辑
摘要: app内打开浏览器目前主要2个cordova插件 cordova-plugin-inappbrowser 和 cordova-plugin-themeablebrowser themeablebrowser是在cordova-plugin-inappbrowser基础上二次开发的, 支持webvie 阅读全文
posted @ 2020-11-13 11:00 小谭行天下 阅读(1830) 评论(0) 推荐(0) 编辑