Skip to content

Instantly share code, notes, and snippets.

View tas33n's full-sized avatar
🥱
Being lazy

Tas33n tas33n

🥱
Being lazy
View GitHub Profile
@tas33n
tas33n / free-database-hosting.md
Created August 6, 2024 13:17 — forked from bmaupin/free-database-hosting.md
Free database hosting
@tas33n
tas33n / setupdomain.sh
Last active June 9, 2025 10:23
🚀 Automate full Nginx reverse proxy + SSL setup for multiple domains/subdomains on your VPS!
#!/bin/bash
# Exit on error
set -e
# Usage
if [ $# -lt 3 ]; then
echo "Usage: $0 <local_port> <email> <domain1> [domain2] [domain3] ..."
echo "Example: $0 3000 [email protected] example.com api.example.com"
exit 1