Skip to content

Instantly share code, notes, and snippets.

View jarrod180's full-sized avatar
๐Ÿš€

Jarrod jarrod180

๐Ÿš€
View GitHub Profile
@jarrod180
jarrod180 / Ubuntu OVA VMWare Cloud-init Deploy
Last active February 12, 2026 03:44
Deploy a ubuntu OVA to VMWare ESXi with cloud init user-data yaml
First create a cloud config YAML file, save it for example, as "my-user-data.yaml"
---
#cloud-config
hostname: ubuntu-vm1
users:
- default
- name: someuser
@carlchan
carlchan / haproxy.cfg
Last active October 29, 2019 10:09
HAProxy - Client SSL Auth "knocking" and automatic certbot
global
log /dev/log local0
log /dev/log local1 notice
chroot /var/lib/haproxy
stats socket /run/haproxy/admin.sock mode 660 level admin
stats timeout 30s
user haproxy
group haproxy
daemon
@spicycode
spicycode / tmux.conf
Created September 20, 2011 16:43
The best and greatest tmux.conf ever
# 0 is too far from ` ;)
set -g base-index 1
# Automatically set window title
set-window-option -g automatic-rename on
set-option -g set-titles on
#set -g default-terminal screen-256color
set -g status-keys vi
set -g history-limit 10000