来自分类 其他2024-01-19 22:35:27
根据自己想要的代理的效果, 选择其一
```bash
# 访问 /proxy1
# 实则访问 http://127.0.0.1:4000/
# 访问 /proxy1/
# 实则访问 http://127.0.0.1:4000//
# 访问 /proxy1/test.html
# 实则访问 http://127.0.0.1:4000/test.html
location /proxy1 {
proxy_pass http://127.0.0.1:4000/;
}
# 访问 /proxy2 或者 /proxy2/
# 实则访问 http://127.0.0.1:4000/
# 访问 /proxy2/test.html
# 实则访问 http://127.0.0.1:4000/test.html
location /proxy2/ {
proxy_pass http://127.0.0.1:4000/;
}
# ============ #
# 访问 /proxy3 或 /proxy3/
# 实则访问 http://127.0.0.1:4000/proxy3
# 访问...
来自分类 其他2018-04-04 11:13:04
github仓库:
https://github.com/lincenying/wepy-mmf-blog
欢迎加星讨论
用的是`wepy`框架, 页面不多, 只有 2 个列表页, 1 个详情页, 1 个介绍页,
功能也只有点赞, 加不了评论, 有评论功能就通不过审核
![](https://ww1.sinaimg.cn/large/005uQRNCgy1fq0g7ni8ijj30by0byq53.jpg)
...
来自分类 其他2017-01-26 20:01:00
随着谷歌浏览器的升级, 并且将所有的 HTTP 协议网站标注为不安全和 DNS 劫持越来越猖狂, 决定将 http 协议改成 https 协议, 当然最主要还是有免费的可以使用, 用 https, 首先就得知道下 SSL 证书:
SSL 证书需要向国际公认的证书证书认证机构(简称CA,Certificate Authority)申请。
CA 机构颁发的证书有3种类型:
域名型SSL证书(DV SSL):信任等级普通,只需验证网站的真实性便可颁发证书保护网站;
企业型SSL证书(OV SSL):信任等级强,须要验证企业的身份,审核严格,安全性更高;
增强型SSL证书(EV SSL):信任等级最高,一般用于银行证券等金融机构,审核严格,安全性最高
对于个人博客来说,只需要申请一个域名型SSL证书(DV SSL)就足够了, 这里推荐个`腾讯云免费 GeoTrust DV SSL 证书`, 申请链接: https://console.qcloud.com/ssl , 申请过程很简单, 就不在赘述了.
申请成功后, 在证书管理里可以下载到相关证书, 里面有 3 个文件夹, 分别对应 IIS...
来自分类 其他2016-12-07 23:12:00
系统重启后, MongoDB 启动不了, 查看 mongodb 的日志, 报错信息是: `ERROR: Cannot write pid file to /var/run/mongodb/mongod.pid: No such file or directory`
解决方法是:
1. 禁用`SELinux`
```
SELINUX=disabled
```
2. 重启系统
3. 依次执行以下命令
```
// 删除 mongod 的锁定文件
#rm /var/lib/mongo/mongod.lock
// 创建 mongo.pid 文件
#mkdir /var/run/mongodb
#touch /var/run/mongodb/mongod.pid
// 修改全效
#chmod 777 /var/run/mongodb/mongod.pid
// 重启
#service mongod start
```...
来自分类 其他2016-12-07 22:12:00
OSX 下 Vagrant Up 报 Authentication failure 错误的解决方法
问题描述: Mac 上 vagrant up 出现 Authentication failure;
问题原因: Mac 上没有 SSH 证书文件。
解决方法: 生成证书文件并添加到证书列表。
操作过程:
### 第一步:
打开终端 输入`ssh-keygen`
然后系统提示输入文件保存位置等信息,连续敲三次回车即可,生成的 SSH key 文件保存在`~/.ssh/id_rsa`
### 第二步:
运行`ssh-add ~/.ssh/id_rsa` 添加到证书列表;
### 第三步:
在Vagrantfile文件添加
```
config.ssh.private_key_path = "~/.ssh/id_rsa"
config.ssh.forward_agent = true
```
用于 vagrant ssh 连接认证
### 第四步:
在虚拟机中的 `~/.ssh/authorized_keys` 文件中追加本地机器 `~/.ssh/id_rsa.pub...
来自分类 其他2016-12-07 22:12:00
```javascript
// ==UserScript==
// @name name
// @author author
// @description description
// @namespace http://tampermonkey.net/
// @license GPL version 3
// @encoding utf-8
// @include https://www.baidu.com/*
// @grant GM_xmlhttpRequest
// @grant GM_download
// @run-at document-end
// @version 1.0.0
// ==/UserScript==
GM_xmlhttpRequest({
method: "GET",
url: "http://api.kanzhihu.com/getpostanswers/20150925/archive",
onload: function(...