This section documents server entrypoints — scripts located in the root of server/ that act as HTTP gateways or CLI tools.
- frontend.php — Web UI API gateway (HTTP).
- mobile.php — Mobile API gateway (HTTP).
- cli.php — CLI tooling:
server/cli/*modules plus per-backend commands viacliUsage()/cli(). - asterisk.php — Asterisk integration endpoint (HTTP).
- internal.php — Internal API gateway (HTTP).
- kamailio.php — Kamailio integration endpoint (HTTP).
- wh.php — Webhook gateway (HTTP).
- ud363.php — UD363 integration endpoint (HTTP).
- qr.php — QR endpoint (HTTP).
- test.php — Local development/testing entrypoint.
- These entrypoints are intentionally simple PHP scripts: they load config, connect to storages (DB/Redis/etc.), and dispatch requests to
server/api/*and/or backends. test.phpis intended for local testing and is not a production interface.