├── .github └── ISSUE_TEMPLATE.md ├── .vscode └── settings.json ├── ADVANCED-CONFIG.md ├── BASIC-CONFIG.md ├── DOCKER-COMPOSE.md ├── Dockerfile ├── ENV-LIST.md ├── README.md ├── baseline └── setup.sh ├── docker-compose.yml └── preflight ├── 10-boot-conf ├── 15-https-conf ├── bake ├── fastcgi.conf ├── init.sh ├── iomonitor ├── letsencrypt.sh ├── nginx.conf ├── nginx.ssl.conf ├── phabricator-ssh-hook.sh ├── php-fpm.conf ├── php.ini ├── run-aphlict.sh ├── run-iomonitor.sh ├── run-phd.sh ├── run-postfix.sh ├── run-ssh.sh ├── server-https-letsencrypt.conf ├── server-https-manual.conf ├── setup.sh ├── sshd_config.phabricator └── supervisord.conf /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedpointArchive/phabricator/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedpointArchive/phabricator/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /ADVANCED-CONFIG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedpointArchive/phabricator/HEAD/ADVANCED-CONFIG.md -------------------------------------------------------------------------------- /BASIC-CONFIG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedpointArchive/phabricator/HEAD/BASIC-CONFIG.md -------------------------------------------------------------------------------- /DOCKER-COMPOSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedpointArchive/phabricator/HEAD/DOCKER-COMPOSE.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedpointArchive/phabricator/HEAD/Dockerfile -------------------------------------------------------------------------------- /ENV-LIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedpointArchive/phabricator/HEAD/ENV-LIST.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedpointArchive/phabricator/HEAD/README.md -------------------------------------------------------------------------------- /baseline/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedpointArchive/phabricator/HEAD/baseline/setup.sh -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedpointArchive/phabricator/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /preflight/10-boot-conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedpointArchive/phabricator/HEAD/preflight/10-boot-conf -------------------------------------------------------------------------------- /preflight/15-https-conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedpointArchive/phabricator/HEAD/preflight/15-https-conf -------------------------------------------------------------------------------- /preflight/bake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedpointArchive/phabricator/HEAD/preflight/bake -------------------------------------------------------------------------------- /preflight/fastcgi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedpointArchive/phabricator/HEAD/preflight/fastcgi.conf -------------------------------------------------------------------------------- /preflight/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedpointArchive/phabricator/HEAD/preflight/init.sh -------------------------------------------------------------------------------- /preflight/iomonitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedpointArchive/phabricator/HEAD/preflight/iomonitor -------------------------------------------------------------------------------- /preflight/letsencrypt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedpointArchive/phabricator/HEAD/preflight/letsencrypt.sh -------------------------------------------------------------------------------- /preflight/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedpointArchive/phabricator/HEAD/preflight/nginx.conf -------------------------------------------------------------------------------- /preflight/nginx.ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedpointArchive/phabricator/HEAD/preflight/nginx.ssl.conf -------------------------------------------------------------------------------- /preflight/phabricator-ssh-hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedpointArchive/phabricator/HEAD/preflight/phabricator-ssh-hook.sh -------------------------------------------------------------------------------- /preflight/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedpointArchive/phabricator/HEAD/preflight/php-fpm.conf -------------------------------------------------------------------------------- /preflight/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedpointArchive/phabricator/HEAD/preflight/php.ini -------------------------------------------------------------------------------- /preflight/run-aphlict.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedpointArchive/phabricator/HEAD/preflight/run-aphlict.sh -------------------------------------------------------------------------------- /preflight/run-iomonitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedpointArchive/phabricator/HEAD/preflight/run-iomonitor.sh -------------------------------------------------------------------------------- /preflight/run-phd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedpointArchive/phabricator/HEAD/preflight/run-phd.sh -------------------------------------------------------------------------------- /preflight/run-postfix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedpointArchive/phabricator/HEAD/preflight/run-postfix.sh -------------------------------------------------------------------------------- /preflight/run-ssh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedpointArchive/phabricator/HEAD/preflight/run-ssh.sh -------------------------------------------------------------------------------- /preflight/server-https-letsencrypt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedpointArchive/phabricator/HEAD/preflight/server-https-letsencrypt.conf -------------------------------------------------------------------------------- /preflight/server-https-manual.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedpointArchive/phabricator/HEAD/preflight/server-https-manual.conf -------------------------------------------------------------------------------- /preflight/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedpointArchive/phabricator/HEAD/preflight/setup.sh -------------------------------------------------------------------------------- /preflight/sshd_config.phabricator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedpointArchive/phabricator/HEAD/preflight/sshd_config.phabricator -------------------------------------------------------------------------------- /preflight/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedpointArchive/phabricator/HEAD/preflight/supervisord.conf --------------------------------------------------------------------------------