Skip to content

Instantly share code, notes, and snippets.

View beevelop's full-sized avatar
🐝

Maik Hummel beevelop

🐝
View GitHub Profile
@beevelop
beevelop / create-cert-and-key-with-certbot.sh
Last active January 15, 2021 09:07 — forked from arastu/create-cert-and-key-with-certbot.sh
Configuring Harbor with HTTPS Access via letsencrypt(certbot with --standalone flag)
sudo certbot -d reg.example.com --manual --preferred-challenges dns certonly
@beevelop
beevelop / README.md
Last active November 29, 2017 18:28 — forked from wolph/whitelist_ssl_certificates_chrome.sh
Easily whitelisting SSL certificates in Chrome under OS X

Whitelist SSL

This script allows you to whitelist / accept / trust your self-signed / custom / invalid certificate by putting it into your Keychain. This is helpful to convince your favorite browser (Chrome or Opera) to not give a shit about its issuer or whatever.

Quick start

git clone https://gist.github.com/beevelop/cf60f88292ad76b0e1bc37ed688c07b4 whiteliste_ssl
cd whiteliste_ssl
chmod +x whitelist_ssl.sh
./whitelist_ssl.sh https://my-self-signed-domain.foobar/whatever/
@beevelop
beevelop / .gitignore
Created May 22, 2017 17:26 — forked from phiresky/.gitignore
sha256 mining
latestinfo
sha256test
callgrind*
sha256test.gcda
@beevelop
beevelop / docker-compose.yml
Created March 20, 2017 13:23 — forked from zshamrock/docker-compose.yml
TICK services docker compose
version: '2'
networks:
# create a network to share between TICK services, so they can connect to each other by specifying influxdb network name
influxdb:
services:
telegraf:
image: telegraf:1.1.2
container_name: telegraf1.1.2
# SSH Login Notification for Pushover
# Add to end of /etc/profile
if [ -n "$SSH_CLIENT" ]; then
TITLE="${USER}@$(hostname -f)"
TEXT="$(date): SSH login to ${USER}@$(hostname -f)"
TEXT="$TEXT from $(echo $SSH_CLIENT|awk '{print $1}')"
curl -s \
-F "token=API-TOKEN" \