├── .gitignore ├── .gitlab-ci.yml ├── README.md ├── custom_theme └── searchbox.html ├── docs ├── _css │ ├── images.css │ ├── menu.css │ ├── style.css │ └── toc.css ├── _files │ └── aegir_keynote.key ├── _images │ ├── admin-menu.png │ ├── aegir-pack.png │ ├── aliasing-with-redirection.png │ ├── aliasing-without-redirection.png │ ├── backup.png │ ├── clone-form.png │ ├── clone-import.png │ ├── clone-task.png │ ├── create-remote-server.png │ ├── delete-disable.png │ ├── delete-nodisable.png │ ├── delete.png │ ├── disable.png │ ├── enable-ssl-on-server.png │ ├── entity-relationships.png │ ├── favicon.ico │ ├── features-page.png │ ├── global-aliasing-settings.png │ ├── hosting-features.png │ ├── login-link.png │ ├── logo.png │ ├── migrate-form.png │ ├── modal-frame.png │ ├── navigation-block.png │ ├── platform-comparison.png │ ├── restore.png │ ├── schematic-small.png │ ├── schematic.png │ ├── site-aliasing-feature.png │ ├── site-form.png │ ├── site-specific-aliasing-settings.png │ ├── site-ssl-configuration.png │ ├── site-view.png │ ├── ssl-support-feature.png │ ├── task-queue-block.png │ └── ui-intro.png ├── _js │ └── menu.js ├── community.md ├── community │ ├── code-of-conduct.md │ ├── core-team.md │ ├── core-team │ │ ├── criteria.md │ │ ├── leadership.md │ │ └── welcome.md │ ├── release-process.md │ ├── resources.md │ ├── services.md │ └── sponsoring.md ├── develop.md ├── develop │ ├── architecture.md │ ├── ci.md │ ├── debian-packaging.md │ ├── provision.md │ ├── provision │ │ └── contexts.md │ ├── repositories.md │ └── terminology.md ├── en.md ├── extend.md ├── extend │ ├── altering-behaviours.md │ ├── backend.md │ ├── contrib.md │ └── frontend.md ├── help │ └── contact.md ├── index.md ├── install.md ├── install │ ├── uninstall.md │ └── upgrade.md ├── quick-start.md ├── release-notes │ ├── 3.0.md │ ├── 3.1.md │ ├── 3.10.md │ ├── 3.11.md │ ├── 3.12.md │ ├── 3.13.md │ ├── 3.14.md │ ├── 3.15.md │ ├── 3.16.md │ ├── 3.17.md │ ├── 3.18.md │ ├── 3.2.md │ ├── 3.3.md │ ├── 3.4.md │ ├── 3.5.md │ ├── 3.6.md │ ├── 3.7.md │ ├── 3.8.md │ ├── 3.9.md │ └── older-versions.md ├── usage.md └── usage │ ├── advanced.md │ ├── advanced │ ├── clients.md │ ├── deployment.md │ ├── distributions.md │ ├── distributions │ │ └── updates.md │ ├── provisionacl.md │ └── ssl.md │ ├── platforms.md │ ├── platforms │ └── tasks.md │ ├── servers.md │ ├── servers │ ├── clustering.md │ └── remote-servers.md │ ├── sites.md │ ├── sites │ ├── aliases.md │ ├── exporting.md │ ├── importing.md │ └── tasks.md │ └── verify.md └── mkdocs.yml /.gitignore: -------------------------------------------------------------------------------- 1 | site/* 2 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/README.md -------------------------------------------------------------------------------- /custom_theme/searchbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/custom_theme/searchbox.html -------------------------------------------------------------------------------- /docs/_css/images.css: -------------------------------------------------------------------------------- 1 | img { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /docs/_css/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_css/menu.css -------------------------------------------------------------------------------- /docs/_css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_css/style.css -------------------------------------------------------------------------------- /docs/_css/toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_css/toc.css -------------------------------------------------------------------------------- /docs/_files/aegir_keynote.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_files/aegir_keynote.key -------------------------------------------------------------------------------- /docs/_images/admin-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/admin-menu.png -------------------------------------------------------------------------------- /docs/_images/aegir-pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/aegir-pack.png -------------------------------------------------------------------------------- /docs/_images/aliasing-with-redirection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/aliasing-with-redirection.png -------------------------------------------------------------------------------- /docs/_images/aliasing-without-redirection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/aliasing-without-redirection.png -------------------------------------------------------------------------------- /docs/_images/backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/backup.png -------------------------------------------------------------------------------- /docs/_images/clone-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/clone-form.png -------------------------------------------------------------------------------- /docs/_images/clone-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/clone-import.png -------------------------------------------------------------------------------- /docs/_images/clone-task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/clone-task.png -------------------------------------------------------------------------------- /docs/_images/create-remote-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/create-remote-server.png -------------------------------------------------------------------------------- /docs/_images/delete-disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/delete-disable.png -------------------------------------------------------------------------------- /docs/_images/delete-nodisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/delete-nodisable.png -------------------------------------------------------------------------------- /docs/_images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/delete.png -------------------------------------------------------------------------------- /docs/_images/disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/disable.png -------------------------------------------------------------------------------- /docs/_images/enable-ssl-on-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/enable-ssl-on-server.png -------------------------------------------------------------------------------- /docs/_images/entity-relationships.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/entity-relationships.png -------------------------------------------------------------------------------- /docs/_images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/favicon.ico -------------------------------------------------------------------------------- /docs/_images/features-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/features-page.png -------------------------------------------------------------------------------- /docs/_images/global-aliasing-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/global-aliasing-settings.png -------------------------------------------------------------------------------- /docs/_images/hosting-features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/hosting-features.png -------------------------------------------------------------------------------- /docs/_images/login-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/login-link.png -------------------------------------------------------------------------------- /docs/_images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/logo.png -------------------------------------------------------------------------------- /docs/_images/migrate-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/migrate-form.png -------------------------------------------------------------------------------- /docs/_images/modal-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/modal-frame.png -------------------------------------------------------------------------------- /docs/_images/navigation-block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/navigation-block.png -------------------------------------------------------------------------------- /docs/_images/platform-comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/platform-comparison.png -------------------------------------------------------------------------------- /docs/_images/restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/restore.png -------------------------------------------------------------------------------- /docs/_images/schematic-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/schematic-small.png -------------------------------------------------------------------------------- /docs/_images/schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/schematic.png -------------------------------------------------------------------------------- /docs/_images/site-aliasing-feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/site-aliasing-feature.png -------------------------------------------------------------------------------- /docs/_images/site-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/site-form.png -------------------------------------------------------------------------------- /docs/_images/site-specific-aliasing-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/site-specific-aliasing-settings.png -------------------------------------------------------------------------------- /docs/_images/site-ssl-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/site-ssl-configuration.png -------------------------------------------------------------------------------- /docs/_images/site-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/site-view.png -------------------------------------------------------------------------------- /docs/_images/ssl-support-feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/ssl-support-feature.png -------------------------------------------------------------------------------- /docs/_images/task-queue-block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/task-queue-block.png -------------------------------------------------------------------------------- /docs/_images/ui-intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_images/ui-intro.png -------------------------------------------------------------------------------- /docs/_js/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/_js/menu.js -------------------------------------------------------------------------------- /docs/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/community.md -------------------------------------------------------------------------------- /docs/community/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/community/code-of-conduct.md -------------------------------------------------------------------------------- /docs/community/core-team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/community/core-team.md -------------------------------------------------------------------------------- /docs/community/core-team/criteria.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/community/core-team/criteria.md -------------------------------------------------------------------------------- /docs/community/core-team/leadership.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/community/core-team/leadership.md -------------------------------------------------------------------------------- /docs/community/core-team/welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/community/core-team/welcome.md -------------------------------------------------------------------------------- /docs/community/release-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/community/release-process.md -------------------------------------------------------------------------------- /docs/community/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/community/resources.md -------------------------------------------------------------------------------- /docs/community/services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/community/services.md -------------------------------------------------------------------------------- /docs/community/sponsoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/community/sponsoring.md -------------------------------------------------------------------------------- /docs/develop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/develop.md -------------------------------------------------------------------------------- /docs/develop/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/develop/architecture.md -------------------------------------------------------------------------------- /docs/develop/ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/develop/ci.md -------------------------------------------------------------------------------- /docs/develop/debian-packaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/develop/debian-packaging.md -------------------------------------------------------------------------------- /docs/develop/provision.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/develop/provision.md -------------------------------------------------------------------------------- /docs/develop/provision/contexts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/develop/provision/contexts.md -------------------------------------------------------------------------------- /docs/develop/repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/develop/repositories.md -------------------------------------------------------------------------------- /docs/develop/terminology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/develop/terminology.md -------------------------------------------------------------------------------- /docs/en.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/extend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/extend.md -------------------------------------------------------------------------------- /docs/extend/altering-behaviours.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/extend/altering-behaviours.md -------------------------------------------------------------------------------- /docs/extend/backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/extend/backend.md -------------------------------------------------------------------------------- /docs/extend/contrib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/extend/contrib.md -------------------------------------------------------------------------------- /docs/extend/frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/extend/frontend.md -------------------------------------------------------------------------------- /docs/help/contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/help/contact.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/install.md -------------------------------------------------------------------------------- /docs/install/uninstall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/install/uninstall.md -------------------------------------------------------------------------------- /docs/install/upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/install/upgrade.md -------------------------------------------------------------------------------- /docs/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/quick-start.md -------------------------------------------------------------------------------- /docs/release-notes/3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/release-notes/3.0.md -------------------------------------------------------------------------------- /docs/release-notes/3.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/release-notes/3.1.md -------------------------------------------------------------------------------- /docs/release-notes/3.10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/release-notes/3.10.md -------------------------------------------------------------------------------- /docs/release-notes/3.11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/release-notes/3.11.md -------------------------------------------------------------------------------- /docs/release-notes/3.12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/release-notes/3.12.md -------------------------------------------------------------------------------- /docs/release-notes/3.13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/release-notes/3.13.md -------------------------------------------------------------------------------- /docs/release-notes/3.14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/release-notes/3.14.md -------------------------------------------------------------------------------- /docs/release-notes/3.15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/release-notes/3.15.md -------------------------------------------------------------------------------- /docs/release-notes/3.16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/release-notes/3.16.md -------------------------------------------------------------------------------- /docs/release-notes/3.17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/release-notes/3.17.md -------------------------------------------------------------------------------- /docs/release-notes/3.18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/release-notes/3.18.md -------------------------------------------------------------------------------- /docs/release-notes/3.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/release-notes/3.2.md -------------------------------------------------------------------------------- /docs/release-notes/3.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/release-notes/3.3.md -------------------------------------------------------------------------------- /docs/release-notes/3.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/release-notes/3.4.md -------------------------------------------------------------------------------- /docs/release-notes/3.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/release-notes/3.5.md -------------------------------------------------------------------------------- /docs/release-notes/3.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/release-notes/3.6.md -------------------------------------------------------------------------------- /docs/release-notes/3.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/release-notes/3.7.md -------------------------------------------------------------------------------- /docs/release-notes/3.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/release-notes/3.8.md -------------------------------------------------------------------------------- /docs/release-notes/3.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/release-notes/3.9.md -------------------------------------------------------------------------------- /docs/release-notes/older-versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/release-notes/older-versions.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/usage.md -------------------------------------------------------------------------------- /docs/usage/advanced.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/usage/advanced/clients.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/usage/advanced/clients.md -------------------------------------------------------------------------------- /docs/usage/advanced/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/usage/advanced/deployment.md -------------------------------------------------------------------------------- /docs/usage/advanced/distributions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/usage/advanced/distributions.md -------------------------------------------------------------------------------- /docs/usage/advanced/distributions/updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/usage/advanced/distributions/updates.md -------------------------------------------------------------------------------- /docs/usage/advanced/provisionacl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/usage/advanced/provisionacl.md -------------------------------------------------------------------------------- /docs/usage/advanced/ssl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/usage/advanced/ssl.md -------------------------------------------------------------------------------- /docs/usage/platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/usage/platforms.md -------------------------------------------------------------------------------- /docs/usage/platforms/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/usage/platforms/tasks.md -------------------------------------------------------------------------------- /docs/usage/servers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/usage/servers.md -------------------------------------------------------------------------------- /docs/usage/servers/clustering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/usage/servers/clustering.md -------------------------------------------------------------------------------- /docs/usage/servers/remote-servers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/usage/servers/remote-servers.md -------------------------------------------------------------------------------- /docs/usage/sites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/usage/sites.md -------------------------------------------------------------------------------- /docs/usage/sites/aliases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/usage/sites/aliases.md -------------------------------------------------------------------------------- /docs/usage/sites/exporting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/usage/sites/exporting.md -------------------------------------------------------------------------------- /docs/usage/sites/importing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/usage/sites/importing.md -------------------------------------------------------------------------------- /docs/usage/sites/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/usage/sites/tasks.md -------------------------------------------------------------------------------- /docs/usage/verify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/docs/usage/verify.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegir-project/documentation/HEAD/mkdocs.yml --------------------------------------------------------------------------------