Skip to content

Instantly share code, notes, and snippets.

@rsik
rsik / Caddyfile
Last active June 1, 2024 04:46
AUTOMATIC1111 Ollama + Stable Diffusion + Caddy on MacOS service plist
:443 {
tls /path/to/caddy/cert.pem /path/to/caddyfiles/key.pem
reverse_proxy 127.0.0.1:11434 {
header_up Host {host}
header_up Origin ""
header_up Referer ""
}
} # for ollama
:8443 {
@rsik
rsik / debian10-notes.md
Last active January 9, 2020 08:21
Debian 10 (Buster) - Notes

Notes for initializing a minimal Debian 10 (Buster) server

init

su -
apt-get install sudo -y
useradd user  # if user was not created on build
usermod -aG sudo user