Skip to content

Instantly share code, notes, and snippets.

View Lax's full-sized avatar

Liu Lantao Lax

View GitHub Profile
@Lax
Lax / video-20180526.rst
Created May 26, 2018 11:47
about video setup
+--------+------+------------+
| public | Desc | Membership |
+========+======+============+
| | | |
+--------+------+------------+
| | | |
+--------+------+------------+
@Lax
Lax / nginx-signals.md
Created June 4, 2018 05:36
Ngins Signals

sudo nginx

# Start the server.  If it's already started you'll see
# a bunch of "bind" errors.  If you want to restart you
# should do a "-s quit" first.

sudo nginx -s stop

# Stop the server quickly.  (Sends the SIGTERM signal.)
@Lax
Lax / docker-compose.yml
Created July 24, 2018 07:48
shadowsocks over kcptun quick setup
version: "3.2"
services:
shadowsocks:
image: centos
ports:
- 2048:2048
restart: always
command: bash -c "yum install python-setuptools -y && easy_install pip && pip install shadowsocks && ssserver -p 2048 -k ${PASSWORD:-DEFAULT_PASSWORD} -t 300 --fast-open --workers 3 -m aes-256-cfb --user nobody"
@Lax
Lax / CHANGELOG.md
Created November 6, 2018 14:16
release notes template

x.x.x Release Notes (yyyy-MM-dd)

New Features

  • None

Enhancements

  • None

Fixes

@Lax
Lax / use-https-for-github.sh
Created June 15, 2019 17:30
Force git to use https:// instead of git:// and ssh://
git config --global url."https://github.com/".insteadOf [email protected]:
git config --global url."https://github.com".insteadOf git://github.com
@Lax
Lax / vue.config.js
Last active June 23, 2019 09:47
vue.config.js for Vue+Electron App https://liulantao.com/electron-vuejs.html
const path = require("path");
module.exports = {
pages: {
index: "src/renderer/main.js"
},
chainWebpack: config => {
config.resolve.alias.set("@", path.resolve(__dirname, "src/renderer/"));
config.resolve.alias.set(
"@components",
@Lax
Lax / server-1.conf
Last active January 4, 2021 06:33
User-Agent based ACL - conditional redirecting rules
log_format client_ip "$remote_addr";
map $http_user_agent $whitelist_ua {
default 1;
"~*curl" 0;
}
server {
listen 80;