This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
##### | |
# Builds a custom nginx | |
# | |
# RELEASE_TAGS="+your+tags+here" | |
# RELEASE_MAINTAINER="Your Name Here" | |
# RELEASE_MAINTAINER_EMAIL="[email protected]" | |
# RELEASE_MESSAGE="Some message" | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- certain endpoints are always blocked | |
if nginx_uri == "/_access_token" or nginx_uri == "/_me" then | |
ngx.exit(403) | |
end | |
-- import requirements | |
local cjson = require "cjson" | |
-- setup some app-level vars | |
local app_id = "APP_ID" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#coding=utf8 | |
import MySQLdb | |
class Connectdb(): | |
def __init__(self): | |
self._conn = MySQLdb.connect("localhost", "root", "letmein", | |
"db_test", charset="utf8") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## IPSET | |
# OR ipset create gfwlist hash:ip | |
ipset -N gfwlist iphash | |
## DNS | |
# gwflist 中的域名转发 dns 请求到 1.1.1.1:53 查询,并且通过 dnsmasq 存到 gfwlist ipset 中 | |
# 启动一个本地 socks 代理给转发 DNS 使用 | |
/opt/shadowsocks/bin/ss-local -c /opt/shadowsocks/etc/dns2socks.conf -f /var/run/ss-local.pid | |
# https://github.com/qiuzi/dns2socks |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"inbounds": [ | |
{ | |
"port": 1082, | |
"protocol": "socks", | |
"settings": { | |
"auth": "noauth" | |
} | |
}, | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Load | |
launchctl load -w ~/Library/LaunchAgents/gost.plist | |
# Unload | |
launchctl unload -w ~/Library/LaunchAgents/gost.plist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Retries": 1, | |
"ServeNodes": [ | |
"dns://127.0.0.1:15353?dns=https-chain://1.1.1.1/dns-query", | |
"red://:1081" | |
], | |
"ChainNodes": [ | |
"https://user:pass@ip:port?peer=/etc/qiangguo/gost/peer.txt" | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
qemu-img create -f qcow2 /var/lib/libvirt/images/base-image-centos7.qcow2 40G | |
virt-install \ | |
--virt-type kvm \ | |
--name base-image-centos7 \ | |
--vcpus 2 \ | |
--ram 4096 \ | |
--cdrom=/root/Downloads/CentOS-7-x86_64-Minimal-2003.iso \ | |
--disk /var/lib/libvirt/images/base-image-centos7.qcow2,format=qcow2 \ | |
--network bridge=br0 \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM centos/s2i-base-centos7 | |
MAINTAINER Le Wang <[email protected]> | |
ARG PYTHON_VERSION=3.5.10 | |
RUN yum install -y \ | |
ncurses-libs \ | |
zlib-devel \ | |
mysql-devel \ |
OlderNewer