Skip to content

thundersquared/apiscp-cp-api

 
 

Repository files navigation

ApisCP panel proxy provides a centralized login portal for all participating ApisCP nodes. Panel proxy consists of three components: (1) reverse proxy cp-proxy, (2) aggregation client cp-collect, and (3) API service cp-api.

This is the API service that responds with lookup requests for domains.

API quickstart

The following quickstart assumes cp-collect stores domain information within a MySQL database running on the same hostname as cp-api. cp-collect is under the account collector.mydomain.com while cp-api is under api.mydomain.com.

  1. Create domain, AddDomain -c siteinfo,domain=api.mydomain.com -c mysql,dbaseprefix=api_

  2. Relocate public/ to html/

    su api.mydomain.com
    cd /var/www
    git clone https://github.com/apisnetworks/cp-api /var/www/html-api
    cp .env.example .env
    ln -s html-api/public html
    cd html-api
    composer install
    exit
  3. Detect application. Open up logging permissions. Request SSL.

    cpcmd -d api.mydomain.com webapp:discover api.mydomain.com
    cpcmd -d api.mydomain.com webapp:fortify api.mydomain.com
    cpcmd -d api.mydomain.com letsencrypt:request '[api.mydomain.com]'
  4. Add grants for user to proxy database.

    cpcmd -d collector.mydomain.com mysql:add-user apiuser localhost random-password
    cpcmd -d collector.mydomain.com mysql:set-privileges apiuser localhost proxy '[read: true]'
  5. Edit .env within html-api/. Set DB_HOST, DB_DATABASE, DB_USERNAME, and DB_PASSWORD.

  6. Configure ApisCP machines to use this callback location.

    All configuration must be changed in config/custom/config.ini. cpcmd provides a short-hand means of doing this, e.g.

    cpcmd scope:set cp.config <SECTION> <NAME> <VALUE>
    
    Section Name Description Sample Value
    auth secret Must be the same across all instances. Used to encrypt trusted browsers. ABCDEFGH
    auth server_format Optional format that appends a domain to the result of server_query. is substituted with result from JSON query. .mydomain.com
    auth server_query API endpoint that returns a JSON object with the server name. https://api.mydomain.com/lookup
    core http_trusted_forward cp-proxy service IP address. 1.2.3.4
    misc cp_proxy Control panel proxy endpoint that cp-proxy resides on. https://cp.mydomain.com

Perform a quick test to validate setup works as intended.

curl -i \
    -H "Content-Type: application/json" \
    -H "Accept: application/json" \
    -X POST -d '{"domain":"mydomain.com"}' \
    https://api.mydomain.com/lookup

Debugging

Set APP_ENV= to local and APP_DEBUG=false. By default, production is used which masks errors.

Releases

No releases published

Packages

No packages published

Languages

  • PHP 99.6%
  • Shell 0.4%