用GitHub建立自己的博客

搭建这个网站失败了几次后终于成功了。于是决定把步骤和注意事项写下来,纪念一下。

My First Blog

在2018-08-23用Hexo建立了一个基于GitHub的blog

Build your own v2ray server

Step 1. Buy a server and a domain (optional).

Any overseas server that you can connect to directly will be ok.

I recommand namescheap to buy a domain.

Step 2. Install v2ray in your server.

Please refer to https://github.com/v2fly/fhs-install-v2ray

Step 3. Edit your config.

We recommand ws + tls for more security.

In your server:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"inbounds": [{
"port": 11451,
"protocol": "vmess",
"listen": "127.0.0.1",
"settings": {
"clients": [
{ "id": "e4572ba2-8369-11ee-b962-0242ac120002" }
]
},
"streamSettings": {
"network": "ws",
"wsSettings": {
"path": "/ray"
}
}
}],
"outbounds": [{
"protocol": "freedom",
"settings": {}
}]
}