feat: RDP 자동 로그인 웹 제어 패널 추가

- Flask 기반 웹 제어 패널 구현
- 토글 스위치로 RDP 자동 로그인 제어
- Tailscale IP 기반 접속 정보 표시
- Python venv 환경 사용
- systemd 서비스로 자동 실행
- PBS 자동 등록 스크립트 기획서 추가

🤖 Generated with Claude Code
Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2025-09-06 00:33:02 +09:00
parent ddcf41c515
commit 9d0adf6f8b
7 changed files with 1294 additions and 0 deletions

15
rdp-control-web.service Normal file
View File

@@ -0,0 +1,15 @@
[Unit]
Description=RDP Auto Login Control Web Service
After=network.target
[Service]
Type=simple
User=root
WorkingDirectory=/root/proxmox-rdp-autosetup
Environment="PATH=/root/proxmox-rdp-autosetup/venv/bin:/usr/bin:/usr/local/bin"
ExecStart=/root/proxmox-rdp-autosetup/venv/bin/gunicorn --bind 0.0.0.0:5000 --workers 2 --timeout 120 rdp_control_web:app
Restart=always
RestartSec=10
[Install]
WantedBy=multi-user.target