> SYSTEM_OVERVIEW
// SYSTEM_STATUS
// RECENT_CUSTOMERS
NO_CUSTOMERS_YET
> ORDER_MANAGEMENT
🌐 VIEW_LANDING_PAGE// PENDING_ORDERS
| ORDER_ID | REFERENCE | NAME | DOMAIN | PAYMENT | STATUS | DATE | ACTIONS |
|---|
> CUSTOMER_MANAGEMENT
| NAME | DOMAIN | ASSIGNED_IP | STATUS | SSL | FAKE_UPD | CONTAINERS | ACTIONS |
|---|
> DOMAIN_CONFIGURATION
// DNS_SETUP_GUIDE
📋 How to Point Customer Domains to This Server
-
Get Your Server IP:
Loading... -
Customer adds DNS A Record:
Type: A Record Host: @ (or subdomain) Value: YOUR_SERVER_IP TTL: 3600 (or Auto) - Wait for DNS propagation (5 min - 48 hours)
-
Customer can then access:
https://their-domain.com
// REGISTERED_DOMAINS
> NGINX_CONFIGURATIONS
// DEPLOYMENT_INSTRUCTIONS
Copy these configs to /etc/nginx/sites-available/ on your VPS:
# 1. Copy config file
sudo cp customer_config.conf /etc/nginx/sites-available/
# 2. Enable site
sudo ln -s /etc/nginx/sites-available/customer_config.conf /etc/nginx/sites-enabled/
# 3. Test config
sudo nginx -t
# 4. Reload nginx
sudo systemctl reload nginx
# 5. (Optional) Generate SSL with Let's Encrypt
sudo certbot --nginx -d customer-domain.com
> SETTINGS
// AUTHENTICATION_INFO
🔐 TOTP Authentication Active
SuperAdmin uses Google Authenticator / Authy for login.
To reset your TOTP secret, manually edit:
/opt/starkiller/superadmin/data/superadmin.json
Generate new secret with command:
node -e "console.log(require('otplib').authenticator.generateSecret())"