博文

目前显示的是 七月, 2019的博文

查询VPN/VPS公司注册地在美国香港中国的相关公司信息网站

香港注册公司信息查询 https://www.icris.cr.gov.hk 中国注册公司查询 http://www.gsxt.gov.cn/index.html 美国证监会 https://www.sec.gov/ 美国各州工商注册信息查询 英文州名      州名缩写             中文州名              查询网址 Alabama         AL               阿拉巴马州            http://sos.alabama.gov/government-records/business-entity-records Alaska                    AK               阿拉斯加州          https://www.commerce.alaska.gov/ ... arch.aspx?mode=Corp Arizona                AZ                亚利桑那州            http://ecorp.azcc.gov/Search Arkansas               AR                阿肯色州              http://www.sos.arkansas.gov/corps/search_all.php California             CA                加利福尼亚州          https://businesssearch.sos.ca.gov/ Colorado               CO                科罗拉多州            https://www.sos.state.co.us/biz/BusinessEntityCriteriaExt.do Connecticut           CT                康涅狄格州            http://www.concord-sots.ct.gov/C ... nquiry&eid=9740 Delaware              DE                特拉华州    ht tps://icis.corp.d

手动申请安装Let's Encrypt免费SSL/TLS证书相关命令小结

本次成功实践操作系统,DigitalOcean上的debian9.7系统 安装常用软件包 curl $apt-get update -y && apt-get install curl -y sudo $apt-get install sudo 安装socat $sudo apt-get install socat 安装curl $ curl  https://get.acme.sh | sh 安装成功后执行 $source ~/.bashrc 以确保脚本所设置的命令别名生效。 建立证书目录 $mkdir /etc/v2ray/ 生成ECC证书: $sudo ~/.acme.sh/acme.sh --issue -d china007.tk --standalone -k ec-256 将ECC证书和密钥安装到 /etc/v2ray 中 $sudo ~/.acme.sh/acme.sh --installcert -d china007.tk --fullchainpath /etc/v2ray/v2ray.crt --keypath /etc/v2ray/v2ray.key --ecc 证书位置/etc/v2ray/v2ray.crt 密钥位置/etc/v2ray/v2ray.key 参考网址 https://toutyrater.github.io/advanced/tls.html https://github.com/Neilpang/acme.sh

搭建v2ray服务器双剑合一科学上网相关命令小结参考

安装 Curl :  apt-get update -y&&apt-get install curl -y 安装sudo apt-get install sudo 以前fork的 233脚本 安装三件套V2ray  bash <(curl -Ls  https://raw.githubusercontent.com/mikewubox/tvonekey/master/v2ray.sh ) debian9.7安装docker 首先,更新现有的包列表: sudo apt update 安装一些必备软件包,这些软件包允许通过HTTPS使用软件包: sudo apt install apt-transport-https ca-certificates curl gnupg2 software-properties-common 然后将官方Docker存储库的GPG密钥添加到您的系统: curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add - 将Docker存储库添加到APT源: sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable" 接下来,使用新添加的repo中的Docker包更新包数据库: sudo apt update 确保您要从Docker repo而不是默认的Debian repo安装: apt-cache policy docker-ce 最后,安装Docker: sudo apt install docker-ce 现在应该安装Docker,守护进程启动,并启用进程启动进程。 检查它是否正在运行: sudo systemctl status docker Docker安装V2ray服务器 $ docker pull v2ray/official 上传配置文件config.json $ sudo docker run -d --name v2ray -v /etc