-
SSH into proxmox node and become root user. Run the following commands to download extra software dependencies we'll need.
apt update apt install -y libsasl2-modules mailutils
-
Enable 2FA for the gmail account that will be used by going to security settings
| #!/bin/bash | |
| # --- fstab Line Generator --- | |
| # Usage: ./fstaby.sh <block_device> <mount_point> | |
| # Example: ./fstaby.sh /dev/sdb1 /srv | |
| # --- Configuration --- | |
| FSTAB_OPTIONS="defaults" # Common options: rw, suid, dev, exec, auto, nouser, async | |
| DUMP_FIELD="0" # Disable backup utility (dump) | |
| FSCK_FIELD="0" # Disable file system check at boot (fsck) |
| #!/usr/bin/env bash | |
| IMAGE="terascope/node-base" | |
| TAG="22" | |
| TOKEN=$(curl -sS https://ghcr.io/token\?scope\="repository:${IMAGE}:pull" | jq -r .token) | |
| # echo $TOKEN | |
| # get digest of 'amd64' image | |
| DIGEST=$(curl -s -H "Authorization: Bearer ${TOKEN}" \ |
| #!/bin/bash | |
| # | |
| # (c)2014 Matt Willsher <[email protected]> | |
| # | |
| # Licensed under GPLv3 http://www.gnu.org/licenses/gpl.txt | |
| # | |
| umask 077 | |
| if [[ $EUID == 0 ]]; then | |
| echo "This script can't be used as root" >&2 |
Testing to confirm that mTLS works in Vector to Vector connections.
Alice and Bob are mutually authenticated using their own TLS self signed
certificates. A malicious attacker, Mallory, can not impersonate Alice, nor
can they impersonate Bob if both Alice and bob set
tls.verify_certificate = true and set tls.ca_file to the other's self signed
certificate.
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.
In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit
| #!/bin/bash | |
| set -e | |
| . /etc/default/backup | |
| INSTANCE=$1 | |
| case $INSTANCE in |
| #!/bin/bash | |
| set -e | |
| #imports | |
| . /etc/default/backup | |
| # config | |
| NAME=$1 |
western.social is a network of Mastodon sites targetted at microbloggers in the Western US. There is a site for each state, like az.social, and one premium site western.social which will be launched later and may have advanced features.
The sites are operated by Austin Godber ([email protected]) and XXXX. The sites will cover costs through tiered subscriptions and "sponsorships" which are effectively banner ads without the tracking.
| --- | |
| api: | |
| enabled: true | |
| data_dir: /tmp/vector-data-dir | |
| sources: | |
| demo: | |
| type: "demo_logs" | |
| format: "json" | |
| interval: 2.0 | |
| transforms: |