mirror of
https://github.com/DRYTRIX/TimeTracker.git
synced 2026-01-09 13:10:24 -06:00
Add comprehensive HTTPS support with two deployment options: - mkcert for local development with trusted certificates - Automatic SSL with Let's Encrypt for production HTTPS Implementation: - Add docker-compose.https-mkcert.yml for local HTTPS development - Add docker-compose.https-auto.yml for automatic SSL certificates - Create Dockerfile.mkcert for certificate generation - Add setup scripts (setup-https-mkcert.sh/bat) - Add startup scripts (start-https.sh/bat) - Add certificate generation script (generate-mkcert-certs.sh) CSRF and IP Access Fixes: - Fix CSRF token validation for IP-based access - Add CSRF troubleshooting documentation - Update configuration to handle various access patterns Documentation: - Add HTTPS_MKCERT_GUIDE.md with setup instructions - Add README_HTTPS.md with general HTTPS documentation - Add README_HTTPS_AUTO.md for automatic SSL setup - Add AUTOMATIC_HTTPS_SUMMARY.md - Add CSRF_IP_ACCESS_FIX.md and CSRF_IP_FIX_SUMMARY.md - Add docs/CSRF_IP_ACCESS_GUIDE.md - Update main README.md with HTTPS information Configuration: - Update .gitignore for SSL certificates and nginx configs - Update env.example with new HTTPS-related variables - Update docker-compose.yml with SSL configuration options This enables secure HTTPS access in both development and production environments while maintaining compatibility with existing deployments.
4.2 KiB
4.2 KiB
🔒 HTTPS Setup for TimeTracker
Quick Start with mkcert
1. Install mkcert
Windows:
choco install mkcert
macOS:
brew install mkcert
Linux:
# See HTTPS_MKCERT_GUIDE.md for detailed instructions
2. Run Setup Script
Windows:
setup-https-mkcert.bat
Linux/Mac:
bash setup-https-mkcert.sh
3. Start with HTTPS
docker-compose -f docker-compose.yml -f docker-compose.https.yml up -d
4. Access Your App
https://localhost
https://192.168.1.100 (your actual IP)
✅ No certificate warnings! ✅ Works with IP addresses! ✅ Secure HTTPS!
What the Script Does
- ✅ Installs local Certificate Authority (trusted by your browser)
- ✅ Generates SSL certificates for localhost + your IP
- ✅ Creates nginx reverse proxy configuration
- ✅ Creates docker-compose.https.yml
- ✅ Updates .env with secure HTTPS settings:
WTF_CSRF_SSL_STRICT=trueSESSION_COOKIE_SECURE=trueCSRF_COOKIE_SECURE=true
Benefits
Solves CSRF Cookie Issues
- ✅ CSRF cookies work correctly with IP addresses
- ✅ Strict security settings enabled
- ✅ No more "CSRF token missing or invalid" errors
Secure Communication
- ✅ All traffic encrypted
- ✅ Trusted certificates (no warnings)
- ✅ Modern TLS 1.2/1.3
Easy Management
- ✅ One command setup
- ✅ Valid for 10 years
- ✅ No renewal needed
Access from Other Devices
To access from your phone, tablet, or other computers without warnings:
-
Find CA location:
mkcert -CAROOT -
Copy
rootCA.pemto device -
Install certificate on device:
- iOS: Settings → Profile → Install
- Android: Settings → Security → Install certificate
- See HTTPS_MKCERT_GUIDE.md for details
-
Access from device:
https://192.168.1.100
File Structure
After running the setup:
TimeTracker/
├── nginx/
│ ├── conf.d/
│ │ └── https.conf # nginx HTTPS config
│ └── ssl/
│ ├── cert.pem # SSL certificate (gitignored)
│ └── key.pem # Private key (gitignored)
├── docker-compose.yml # Base configuration
├── docker-compose.https.yml # HTTPS override (auto-generated)
├── setup-https-mkcert.sh # Linux/Mac setup script
├── setup-https-mkcert.bat # Windows setup script
└── .env # Updated with HTTPS settings
Verification
Check Certificate
- Navigate to
https://localhost - Click padlock icon in browser
- View certificate → Should show "mkcert" with no warnings
Check Cookies
- Open DevTools (F12) → Application → Cookies
- Verify
sessionandXSRF-TOKENcookies haveSecureflag
Test Application
- Login
- Create a project
- Log time
- Should work without any CSRF errors ✅
Stopping HTTPS
To return to HTTP:
# Stop HTTPS setup
docker-compose -f docker-compose.yml -f docker-compose.https.yml down
# Start normally
docker-compose up -d
Troubleshooting
Certificate Warning Appears
# Reinstall CA
mkcert -install
# Restart browser completely
nginx Won't Start
# Check if port is in use
netstat -ano | findstr :443 # Windows
lsof -i :443 # Linux/Mac
# Check logs
docker-compose logs nginx
IP Address Not Working
# Regenerate with correct IP
mkcert -key-file nginx/ssl/key.pem -cert-file nginx/ssl/cert.pem \
localhost 127.0.0.1 ::1 YOUR_ACTUAL_IP *.local
# Restart
docker-compose restart nginx
Complete Documentation
For detailed instructions, see:
- HTTPS_MKCERT_GUIDE.md - Complete mkcert guide
- CSRF_IP_ACCESS_FIX.md - CSRF troubleshooting
Summary
One command to HTTPS:
bash setup-https-mkcert.sh
docker-compose -f docker-compose.yml -f docker-compose.https.yml up -d
Result:
✅ Secure HTTPS
✅ No certificate warnings
✅ Works with IP addresses
✅ CSRF cookies work perfectly
✅ Production-grade security settings
Enjoy secure TimeTracker! 🔒