美文网首页全栈之巅
常用命令、代码

常用命令、代码

作者: 全栈之巅Johnny | 来源:发表于2017-06-17 13:34 被阅读3次

brew国内镜像

cd "$(brew --repo)"
git remote set-url origin https://mirrors.ustc.edu.cn/brew.git
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.zshrc
source ~/.zshrc

git fork出来的项目和上游仓库同步

git remote add upstream https://github.com/zgabievi/awesome-adonisjs
git remote update upstream
git rebase upstream/master
git push

SSL生成

service nginx stop
certbot certonly --text --agree-tos --email service@genyii.com --standalone --cert-name genyii.com -d genyii.com,www.genyii.com,inventory.genyii.com,inventorybackend.genyii.com,wx.genyii.com,family.genyii.com,adminify.genyii.com,sells.genyii.com
certbot certonly --text --agree-tos --email service@adonis-china.org --standalone --cert-name adonis-china.org -d adonis-china.org,www.adonis-china.org,adonis.genyii.com,adonisjs.net,adonisjs.genyii.com
service nginx start
certbot renew

SSL nginx 配置

listen 443 ssl;
ssl_certificate /etc/letsencrypt/live/inventory.genyii.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/inventory.genyii.com/privkey.pem;

MongoDB

mongod --directoryperdb --dbpath d:/data/db --logpath d:/data/log/mongo.log --logappend --rest --install
net start MongoDB

相关文章

  • 命令行常用命令

    npm常用命令 git常用命令 git 常见问题解决 让远程仓库代码覆盖本地的代码 2、 让本地代码覆盖远程 3...

  • springboot单项目部署

    1. svn代码checkout 代码检出 学习: svn常用命令 检出 svn checkout http:...

  • 最全的 Git 常用命令清单

    Git常用命令 仓库 配置 增加/删除文件 代码提交 分支 标签 查看信息 远程同步 撤销 其他 以上常用命令来自...

  • Git 常用命令

    Git 常用命令 仓库 配置 增加/删除文件 代码提交 分支 标签 查看信息 远程同步 撤销 其他 以上常用命令来...

  • git常用指令

    常用命令:git clone +"地址" //从git仓库下载代码git init ...

  • Magento2常用命令

    常用命令 后台日志,常用于追踪代码: \Magento\Framework\App\ObjectManager::...

  • Maven常用命令

    开发中常用命令 mvn compile 编译源代码 mvn test-compile 编译测试代码 mvn tes...

  • MongoDB 基本命令

    一、数据库常用命令1、Help查看命令提示 复制代码 代码如下: helpdb.help();db.yourCol...

  • 常用命令

    常用命令 清理: mvn clean 编译代码: mvn compile -Ppro (-P***编译选择环境...

  • Git

    1、创建代码共享库 2、Clone远程仓库代码 3、忽略文件 4、常用命令 git add.git commitg...

网友评论

    本文标题:常用命令、代码

    本文链接:https://www.haomeiwen.com/subject/iyovqxtx.html