I hereby claim:
- I am jorijn on github.
- I am jorijns (https://keybase.io/jorijns) on keybase.
- I have a public key ASCsS2jv8uN57P0fYVthxMeBGucZG2Kd2hkri6MBDcY7bgo
To claim this, I am signing this object:
| apiVersion: v1 | |
| kind: ConfigMap | |
| metadata: | |
| # any name can be used; Velero uses the labels (below) | |
| # to identify it rather than the name | |
| name: change-storage-class-config | |
| # must be in the velero namespace | |
| namespace: velero | |
| # the below labels should be used verbatim in your | |
| # ConfigMap. |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| FAILFILE=./failcombinaties | |
| # Clear out out lists | |
| > /tmp/in | |
| > /tmp/out | |
| # Store invoices in an array for possible reuse | |
| declare -a INVOICES |
| 420183667455285923,rompert.comguy,20,20 | |
| 590034546445293500,otherpeeralias,20,20 |
Download the latest ugw3 package from https://github.com/Lochnair/vyatta-wireguard/releases and install it on your USG using dpkg -i wireguard-ugw3-<version>.deb.
cd /config/auth
umask 077
mkdir wireguard
cd wireguard
wg genkey > wg_private.key
wg pubkey < wg_private.key > wg_public.keyIn configuration file /etc/tor/torrc add:
HiddenServiceDir /var/lib/tor/hidden_service/lnd_watchtower
HiddenServiceVersion 3
HiddenServicePort 9911 127.0.0.1:9911
Now reload the TOR daemon with systemctl reload tor. Inspect the hostname TOR has assigned to your secret service with:
| version: "3" | |
| services: | |
| blockbook: | |
| container_name: blockbook | |
| restart: always | |
| build: . | |
| entrypoint: | |
| - /go/src/blockbook/blockbook | |
| - -sync | |
| - -blockchaincfg=/home/blockbook/cfg/cfg.json |
| { | |
| "coin_name": "Bitcoin", | |
| "coin_shortcut": "BTC", | |
| "coin_label": "Bitcoin", | |
| "rpc_url": "http://somehost:8332", | |
| "rpc_user": "someuser", | |
| "rpc_pass": "somepassword", | |
| "rpc_timeout": 25, | |
| "parse": true, | |
| "message_queue_binding": "tcp://somehost:zmqpubrawblockport", |
| # initialize from the image | |
| FROM debian:9 | |
| RUN apt-get update && \ | |
| apt-get upgrade -y && \ | |
| apt-get install -y build-essential git wget pkg-config lxc-dev libzmq3-dev \ | |
| libgflags-dev libsnappy-dev zlib1g-dev libbz2-dev \ | |
| liblz4-dev graphviz && \ | |
| apt-get clean |