Refactor: Rename services and containers to home-service-proxy

This commit is contained in:
hyungi
2025-12-31 09:59:43 +09:00
commit 07ba73e329
56 changed files with 242109 additions and 0 deletions

23
add-komga-hosts.sh Executable file
View File

@@ -0,0 +1,23 @@
#!/bin/bash
echo "🔧 Komga DNS 설정 추가 중..."
# /etc/hosts에 komga.hyungi.net 추가
if ! grep -q "komga.hyungi.net" /etc/hosts; then
echo "192.168.219.104 komga.hyungi.net" | sudo tee -a /etc/hosts
echo "✅ komga.hyungi.net → 192.168.219.104 추가됨"
else
echo "⚠️ komga.hyungi.net 이미 존재함"
fi
# DNS 캐시 플러시
sudo dscacheutil -flushcache
sudo killall -HUP mDNSResponder
echo "🔄 DNS 캐시 플러시 완료"
echo ""
echo "📋 확인:"
dig komga.hyungi.net | grep -A1 "ANSWER SECTION"