2,847
Total Users
Rp 1.2B
Total Balance
156
Today's Transactions
342
Active Sessions
Revenue Overview
This Week
Last Week
Mon
Tue
Wed
Thu
Fri
Sat
Sun
Provider Distribution
Sports45%
Casino30%
Live Casino15%
Poker10%
Game Providers
AFB Sports
● Online
IFD Casino
● Online
SBOBET
● Online
Pragmatic
● Online
Pocket Games
● Online
Evolution
● Online
Recent Transactions
View All| User ID | Provider | Amount | Type | Status | Time | Action |
|---|---|---|---|---|---|---|
| #USR001 | AFB Sports | + Rp 500,000 | Deposit | Success | 2 min ago | |
| #USR045 | IFD Casino | - Rp 250,000 | Withdrawal | Pending | 15 min ago | |
| #USR089 | SBOBET | + Rp 1,200,000 | Deposit | Success | 25 min ago | |
| #USR123 | Pragmatic | - Rp 150,000 | Bet | Failed | 35 min ago | |
| #USR234 | Evolution | + Rp 3,500,000 | Win | Success | 45 min ago |
Server Configuration Guide
🚀 Quick Deployment
1. Apache Setup
sudo a2enmod rewrite headers sudo nano /etc/apache2/sites-available/dashboard.conf
2. Virtual Host Config
<VirtualHost *:80>
ServerName yourdomain.com
DocumentRoot /var/www/html/SITREP-1-DASHBOARD
<Directory /var/www/html/SITREP-1-DASHBOARD>
Options -Indexes +FollowSymLinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
3. Enable Site & Restart
sudo a2ensite dashboard.conf sudo systemctl restart apache2
4. Set Permissions
sudo chown -R www-data:www-data /var/www/html/SITREP-1-DASHBOARD sudo chmod -R 755 /var/www/html/SITREP-1-DASHBOARD
5. MySQL Database (optional)
sudo mysql -u root -p CREATE DATABASE tactical_dashboard; CREATE USER 'dashboard_user'@'localhost' IDENTIFIED BY 'strong_password'; GRANT ALL PRIVILEGES ON tactical_dashboard.* TO 'dashboard_user'@'localhost'; FLUSH PRIVILEGES; EXIT;
6. HTTPS with Let's Encrypt
sudo apt install certbot python3-certbot-apache sudo certbot --apache -d yourdomain.com
Your dashboard is now live at http://yourdomain.com