EXECUTABLE DOCUMENTATION
TLS and service domains
One SAN certificate should cover the root, www and all eight service hosts. HTTPS redirect and hostname verification are required.
COMMAND
Copy, run and verify
Read the command before execution and run it only on the intended server.
PuTTY · Bash
SITE='/www/wwwroot/exopanel.space'
PHP='/www/server/php/84/bin/php'
sudo -u www env EXOPANEL_PORTAL_CONFIG="/config/config.php" \
"" "/current/cli.php" health
for DOMAIN in exopanel.space www.exopanel.space docs.exopanel.space downloads.exopanel.space updates.exopanel.space status.exopanel.space security.exopanel.space account.exopanel.space license.exopanel.space api.exopanel.space; do
curl -L -sS -o /dev/null --max-time 20 \
-w " HTTP=%{http_code} TLS=%{ssl_verify_result}\n" \
"https:///"
done
tail -n 100 /www/wwwlogs/exopanel.space.error.log 2>/dev/null || trueRequired result
The command must finish without syntax errors. Health reports database ok, signing key configured, and every HTTPS domain returns TLS result 0.
