✨ Initial commit: Headscale + Headplane 완전 구축 프로젝트
🎯 프로젝트 목표: - Tailscale 완전 대체하는 자체 호스팅 솔루션 구축 - Headscale + Headplane Docker Compose로 원클릭 설치 - Headplane 한글화 및 커스터마이징 - 완전한 VPN 관리 시스템 개발 🛠️ 기술 스택: - Headscale: Tailscale 호환 컨트롤 서버 - Headplane: 웹 기반 관리 UI - Docker & Docker Compose - SQLite 데이터베이스 - 향후 PostgreSQL 지원 예정 🔧 주요 구성: - docker-compose.yml: 멀티 컨테이너 구성 - config/config.yaml: Headscale 상세 설정 - start.sh: 자동화된 설치 스크립트 - .env: 환경변수 관리 📋 개발 계획: 1. 기본 설치 및 테스트 2. HTTPS/TLS 보안 구성 3. Headplane UI 한글화 4. 고급 네트워킹 설정 5. 모니터링 및 백업 시스템 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
64
.gitignore
vendored
Normal file
64
.gitignore
vendored
Normal file
@@ -0,0 +1,64 @@
|
||||
# Environment variables
|
||||
.env*
|
||||
!.env.example
|
||||
|
||||
# Database files
|
||||
*.db
|
||||
*.sqlite
|
||||
*.sqlite3
|
||||
|
||||
# Data directories
|
||||
data/
|
||||
run/
|
||||
logs/
|
||||
|
||||
# Docker volumes
|
||||
volumes/
|
||||
|
||||
# SSL certificates
|
||||
*.crt
|
||||
*.key
|
||||
*.pem
|
||||
|
||||
# Backup files
|
||||
*.backup
|
||||
*.bak
|
||||
|
||||
# IDE
|
||||
.vscode/
|
||||
.idea/
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# Runtime data
|
||||
pids
|
||||
*.pid
|
||||
*.seed
|
||||
*.pid.lock
|
||||
|
||||
# Dependency directories
|
||||
node_modules/
|
||||
|
||||
# Build outputs
|
||||
dist/
|
||||
build/
|
||||
out/
|
||||
|
||||
# API keys and secrets
|
||||
api_keys.txt
|
||||
secrets.txt
|
||||
|
||||
# Temporary files
|
||||
tmp/
|
||||
temp/
|
||||
|
||||
# Docker Compose override files
|
||||
docker-compose.override.yml
|
||||
Reference in New Issue
Block a user