Prepare environment
docker run -i -t --rm -v ${PWD}:/mnt \
-e PIP_BREAK_SYSTEM_PACKAGES=1 \
-e PIP_ROOT_USER_ACTION=ignore \
-e PIP_NO_WARN_SCRIPT_LOCATION=0 \
--name=buildenv alpine:latest \
sh -c 'apk add bash; bash'Prepare environment
docker run -i -t --rm -v ${PWD}:/mnt \
-e PIP_BREAK_SYSTEM_PACKAGES=1 \
-e PIP_ROOT_USER_ACTION=ignore \
-e PIP_NO_WARN_SCRIPT_LOCATION=0 \
--name=buildenv alpine:latest \
sh -c 'apk add bash; bash'| # HOST | |
| echo "deb http://deb.debian.org/debian/ unstable main" > /etc/apt/sources.list.d/unstable-wireguard.list | |
| printf 'Package: *\nPin: release a=unstable\nPin-Priority: 90\n' > /etc/apt/preferences.d/limit-unstable | |
| apt update | |
| apt install wireguard pve-headers | |
| echo "wireguard" >> /etc/modules-load.d/modules.conf | |
| # Container | |
| echo "deb http://deb.debian.org/debian/ unstable main" > /etc/apt/sources.list.d/unstable-wireguard.list | |
| printf 'Package: *\nPin: release a=unstable\nPin-Priority: 90\n' > /etc/apt/preferences.d/limit-unstable |
| #!/usr/bin/env bash | |
| set -e | |
| addEntries() { | |
| # check if universal access / custom menu key exists | |
| if defaults read com.apple.universalaccess com.apple.custommenu.apps > /dev/null 2>&1; then | |
| defaults delete com.apple.universalaccess com.apple.custommenu.apps | |
| fi |
| #!/usr/bin/env bash | |
| set -e | |
| # list of Nix packages to install | |
| NIX_PACKAGES="darwin.shell_cmds" | |
| XCODE_DERIVED_DATA="$HOME/Library/Developer/Xcode/DerivedData" | |
| WORKING_DIRECTORY=$PWD |
Kong, Traefik, Caddy, Linkerd, Fabio, Vulcand, and Netflix Zuul seem to be the most common in microservice proxy/gateway solutions. Kubernetes Ingress is often a simple Ngnix, which is difficult to separate the popularity from other things.
This is just a picture of this link from March 2, 2019
Originally, I had included some other solution
| #!/usr/bin/env python | |
| #coding=utf-8 | |
| # | |
| # Generate a list of dnsmasq rules with ipset for gfwlist | |
| # | |
| # Copyright (C) 2014 http://www.shuyz.com | |
| # Ref https://code.google.com/p/autoproxy-gfwlist/wiki/Rules | |
| import urllib2 | |
| import re |