├── .env.example ├── .github └── workflows │ └── build.yml ├── .gitignore ├── README.md ├── blog ├── 2024-04-12-announcement.mdx ├── 2024-04-15-head-start.mdx ├── 2024-04-26-license-questions.mdx ├── 2024-05-03-translations-begin.mdx ├── 2024-05-04-agpl-relicensing.mdx └── authors.yml ├── docs ├── about.mdx ├── comparison.mdx ├── glossary.mdx ├── guides │ ├── change-panel-domain.mdx │ ├── database-hosts.mdx │ ├── docker.mdx │ ├── mounts.mdx │ ├── php-upgrade.mdx │ ├── ssl.mdx │ └── uninstalling.mdx ├── index.mdx ├── panel │ ├── advanced │ │ ├── artisan.mdx │ │ ├── docker.mdx │ │ ├── mysql.mdx │ │ └── redis.mdx │ ├── getting-started.mdx │ ├── optional-config.mdx │ ├── panel-setup.mdx │ ├── update.mdx │ └── webserver-config.mdx ├── troubleshooting.mdx └── wings │ ├── install.mdx │ ├── optional-config.mdx │ └── update.mdx ├── docusaurus.config.ts ├── package.json ├── pnpm-lock.yaml ├── sidebars.ts ├── src ├── components │ └── HomepageFeatures │ │ ├── look.tsx │ │ ├── sponsors.tsx │ │ ├── styles.module.css │ │ ├── what.tsx │ │ └── why.tsx ├── css │ ├── custom.scss │ └── tailwind.css ├── pages │ ├── faq.mdx │ ├── index.module.css │ ├── index.tsx │ └── support.mdx ├── plugins │ └── tailwind-config.cjs └── theme │ └── MDXComponents.js ├── static ├── .nojekyll ├── img │ ├── blog │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ └── 5.png │ ├── favicon.ico │ ├── homepage │ │ └── sponsor │ │ │ ├── ash.png │ │ │ ├── ash.svg │ │ │ ├── surfhosting.png │ │ │ └── vultric.png │ └── logo.png └── updatePanel.sh ├── tailwind.config.js └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/README.md -------------------------------------------------------------------------------- /blog/2024-04-12-announcement.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/blog/2024-04-12-announcement.mdx -------------------------------------------------------------------------------- /blog/2024-04-15-head-start.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/blog/2024-04-15-head-start.mdx -------------------------------------------------------------------------------- /blog/2024-04-26-license-questions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/blog/2024-04-26-license-questions.mdx -------------------------------------------------------------------------------- /blog/2024-05-03-translations-begin.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/blog/2024-05-03-translations-begin.mdx -------------------------------------------------------------------------------- /blog/2024-05-04-agpl-relicensing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/blog/2024-05-04-agpl-relicensing.mdx -------------------------------------------------------------------------------- /blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/blog/authors.yml -------------------------------------------------------------------------------- /docs/about.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/docs/about.mdx -------------------------------------------------------------------------------- /docs/comparison.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/docs/comparison.mdx -------------------------------------------------------------------------------- /docs/glossary.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/docs/glossary.mdx -------------------------------------------------------------------------------- /docs/guides/change-panel-domain.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/docs/guides/change-panel-domain.mdx -------------------------------------------------------------------------------- /docs/guides/database-hosts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/docs/guides/database-hosts.mdx -------------------------------------------------------------------------------- /docs/guides/docker.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/docs/guides/docker.mdx -------------------------------------------------------------------------------- /docs/guides/mounts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/docs/guides/mounts.mdx -------------------------------------------------------------------------------- /docs/guides/php-upgrade.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/docs/guides/php-upgrade.mdx -------------------------------------------------------------------------------- /docs/guides/ssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/docs/guides/ssl.mdx -------------------------------------------------------------------------------- /docs/guides/uninstalling.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/docs/guides/uninstalling.mdx -------------------------------------------------------------------------------- /docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/docs/index.mdx -------------------------------------------------------------------------------- /docs/panel/advanced/artisan.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/docs/panel/advanced/artisan.mdx -------------------------------------------------------------------------------- /docs/panel/advanced/docker.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/docs/panel/advanced/docker.mdx -------------------------------------------------------------------------------- /docs/panel/advanced/mysql.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/docs/panel/advanced/mysql.mdx -------------------------------------------------------------------------------- /docs/panel/advanced/redis.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/docs/panel/advanced/redis.mdx -------------------------------------------------------------------------------- /docs/panel/getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/docs/panel/getting-started.mdx -------------------------------------------------------------------------------- /docs/panel/optional-config.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/docs/panel/optional-config.mdx -------------------------------------------------------------------------------- /docs/panel/panel-setup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/docs/panel/panel-setup.mdx -------------------------------------------------------------------------------- /docs/panel/update.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/docs/panel/update.mdx -------------------------------------------------------------------------------- /docs/panel/webserver-config.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/docs/panel/webserver-config.mdx -------------------------------------------------------------------------------- /docs/troubleshooting.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/docs/troubleshooting.mdx -------------------------------------------------------------------------------- /docs/wings/install.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/docs/wings/install.mdx -------------------------------------------------------------------------------- /docs/wings/optional-config.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/docs/wings/optional-config.mdx -------------------------------------------------------------------------------- /docs/wings/update.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/docs/wings/update.mdx -------------------------------------------------------------------------------- /docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/docusaurus.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/sidebars.ts -------------------------------------------------------------------------------- /src/components/HomepageFeatures/look.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/src/components/HomepageFeatures/look.tsx -------------------------------------------------------------------------------- /src/components/HomepageFeatures/sponsors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/src/components/HomepageFeatures/sponsors.tsx -------------------------------------------------------------------------------- /src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /src/components/HomepageFeatures/what.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/src/components/HomepageFeatures/what.tsx -------------------------------------------------------------------------------- /src/components/HomepageFeatures/why.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/src/components/HomepageFeatures/why.tsx -------------------------------------------------------------------------------- /src/css/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/src/css/custom.scss -------------------------------------------------------------------------------- /src/css/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/src/css/tailwind.css -------------------------------------------------------------------------------- /src/pages/faq.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/src/pages/faq.mdx -------------------------------------------------------------------------------- /src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/src/pages/index.module.css -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/support.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/src/pages/support.mdx -------------------------------------------------------------------------------- /src/plugins/tailwind-config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/src/plugins/tailwind-config.cjs -------------------------------------------------------------------------------- /src/theme/MDXComponents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/src/theme/MDXComponents.js -------------------------------------------------------------------------------- /static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/img/blog/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/static/img/blog/1.png -------------------------------------------------------------------------------- /static/img/blog/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/static/img/blog/2.png -------------------------------------------------------------------------------- /static/img/blog/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/static/img/blog/3.png -------------------------------------------------------------------------------- /static/img/blog/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/static/img/blog/4.png -------------------------------------------------------------------------------- /static/img/blog/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/static/img/blog/5.png -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/homepage/sponsor/ash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/static/img/homepage/sponsor/ash.png -------------------------------------------------------------------------------- /static/img/homepage/sponsor/ash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/static/img/homepage/sponsor/ash.svg -------------------------------------------------------------------------------- /static/img/homepage/sponsor/surfhosting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/static/img/homepage/sponsor/surfhosting.png -------------------------------------------------------------------------------- /static/img/homepage/sponsor/vultric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/static/img/homepage/sponsor/vultric.png -------------------------------------------------------------------------------- /static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/static/img/logo.png -------------------------------------------------------------------------------- /static/updatePanel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/static/updatePanel.sh -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-dev/docs/HEAD/tsconfig.json --------------------------------------------------------------------------------