"full_description":"Aphlict server for Phabricator\n==============================\n\nOne Aphlict server could serve one or several instances of Phabricator.\n\nRun directly on HTTP\n--------------------\n\n1. Pull the image: `docker pull nasqueron/aphlict`\n2. Run the container: `docker run -dt -p 22280:22280 -p 22281:22281 nasqueron/aphlict`\n3. Configure your Phabricator instance at http://phabricator.domain.tld/config/edit/notification.servers\n\nWhen you configure your instance, use the following template:\n\n```lang=json\n[\n {\n\"type\": \"client\",\n\"host\": \"aphlict.yourdomain.tld\",\n\"port\": 22280,\n\"protocol\": \"http\"\n },\n {\n\"type\": \"admin\",\n\"host\": \"aphlict.yourdomain.tld\",\n\"port\": 22281,\n\"protocol\": \"http\"\n }\n]\n```\n\nTLS termination\n---------------\n\nAdd a certificate to your container, replace the protocol\nhttp by https in Phabricator config.\n\nEdit /opt/phabricator/conf/aphlict/aphlict.custom.json in your\ncontainer, so ssl.key & ssl.cert certificates have the relevant paths.\n\nNote\n----\n\nYou can get the server log using `docker logs <your container name>`.\n\nTo check the status of the server,\nuse http://phabricator.domain.tld/config/cluster/notifications/\n",