├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── content-request.md └── workflows │ └── deploy.yml ├── .gitignore ├── .gitpod.yml ├── LICENSE ├── README.md ├── docs ├── CNAME_old ├── about │ ├── financial-information.md │ ├── hosting-sponsors.md │ ├── mutual-respect-policy.md │ ├── support.md │ ├── team.md │ └── volunteering-opportunities.md ├── assets │ ├── 20220119.png │ ├── aarch64-choosing-vm-specs.png │ ├── authelia-qr-code.png │ ├── authelia-reg-device.png │ ├── authelia-reset-passwprd.png │ ├── favicon.png │ ├── fosshost-orgchart-20211030.png │ ├── fosshost-orgchart-20220119.png │ └── ssh-connection-example.png ├── features │ ├── change-request.md │ └── service-features.md ├── general │ ├── application.md │ ├── getting-started.md │ ├── how-you-can-help.md │ ├── regions.md │ └── what-do-we-expect.md ├── howtos │ ├── configuring-your-new-vps.md │ ├── how-to-create-ssh-key.md │ ├── how-to-lock-down-ssh.md │ ├── how-to-manage-vm-aarch.md │ └── how-to-manage-vm.md ├── index.md └── products-and-services │ ├── aarch64-virtual-private-server.md │ ├── domain-reg-management.md │ ├── mirrors-as-a-service.md │ └── virtual-private-server.md ├── mkdocs.yml ├── overrides └── main.html └── requirements.txt /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/content-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/.github/ISSUE_TEMPLATE/content-request.md -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | venv/* 2 | -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/README.md -------------------------------------------------------------------------------- /docs/CNAME_old: -------------------------------------------------------------------------------- 1 | docs.fosshost.org 2 | -------------------------------------------------------------------------------- /docs/about/financial-information.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/docs/about/financial-information.md -------------------------------------------------------------------------------- /docs/about/hosting-sponsors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/docs/about/hosting-sponsors.md -------------------------------------------------------------------------------- /docs/about/mutual-respect-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/docs/about/mutual-respect-policy.md -------------------------------------------------------------------------------- /docs/about/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/docs/about/support.md -------------------------------------------------------------------------------- /docs/about/team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/docs/about/team.md -------------------------------------------------------------------------------- /docs/about/volunteering-opportunities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/docs/about/volunteering-opportunities.md -------------------------------------------------------------------------------- /docs/assets/20220119.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/docs/assets/20220119.png -------------------------------------------------------------------------------- /docs/assets/aarch64-choosing-vm-specs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/docs/assets/aarch64-choosing-vm-specs.png -------------------------------------------------------------------------------- /docs/assets/authelia-qr-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/docs/assets/authelia-qr-code.png -------------------------------------------------------------------------------- /docs/assets/authelia-reg-device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/docs/assets/authelia-reg-device.png -------------------------------------------------------------------------------- /docs/assets/authelia-reset-passwprd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/docs/assets/authelia-reset-passwprd.png -------------------------------------------------------------------------------- /docs/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/docs/assets/favicon.png -------------------------------------------------------------------------------- /docs/assets/fosshost-orgchart-20211030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/docs/assets/fosshost-orgchart-20211030.png -------------------------------------------------------------------------------- /docs/assets/fosshost-orgchart-20220119.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/docs/assets/fosshost-orgchart-20220119.png -------------------------------------------------------------------------------- /docs/assets/ssh-connection-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/docs/assets/ssh-connection-example.png -------------------------------------------------------------------------------- /docs/features/change-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/docs/features/change-request.md -------------------------------------------------------------------------------- /docs/features/service-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/docs/features/service-features.md -------------------------------------------------------------------------------- /docs/general/application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/docs/general/application.md -------------------------------------------------------------------------------- /docs/general/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/docs/general/getting-started.md -------------------------------------------------------------------------------- /docs/general/how-you-can-help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/docs/general/how-you-can-help.md -------------------------------------------------------------------------------- /docs/general/regions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/docs/general/regions.md -------------------------------------------------------------------------------- /docs/general/what-do-we-expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/docs/general/what-do-we-expect.md -------------------------------------------------------------------------------- /docs/howtos/configuring-your-new-vps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/docs/howtos/configuring-your-new-vps.md -------------------------------------------------------------------------------- /docs/howtos/how-to-create-ssh-key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/docs/howtos/how-to-create-ssh-key.md -------------------------------------------------------------------------------- /docs/howtos/how-to-lock-down-ssh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/docs/howtos/how-to-lock-down-ssh.md -------------------------------------------------------------------------------- /docs/howtos/how-to-manage-vm-aarch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/docs/howtos/how-to-manage-vm-aarch.md -------------------------------------------------------------------------------- /docs/howtos/how-to-manage-vm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/docs/howtos/how-to-manage-vm.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/products-and-services/aarch64-virtual-private-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/docs/products-and-services/aarch64-virtual-private-server.md -------------------------------------------------------------------------------- /docs/products-and-services/domain-reg-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/docs/products-and-services/domain-reg-management.md -------------------------------------------------------------------------------- /docs/products-and-services/mirrors-as-a-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/docs/products-and-services/mirrors-as-a-service.md -------------------------------------------------------------------------------- /docs/products-and-services/virtual-private-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/docs/products-and-services/virtual-private-server.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /overrides/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/overrides/main.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosshostorg/public-docs/HEAD/requirements.txt --------------------------------------------------------------------------------