├── .github └── workflows │ └── github-pages.yml ├── .gitignore ├── .snippets └── webservers │ ├── Caddyfile │ ├── Caddyfile-nossl │ ├── apache-nossl.conf │ ├── apache.conf │ ├── nginx-centos.conf │ ├── nginx-nossl.conf │ ├── nginx-php8.3-nossl.conf │ ├── nginx-php8.3.conf │ └── nginx.conf ├── .vuepress ├── components │ └── Badge.vue ├── config.js ├── enhanceApp.js ├── public │ ├── .DS_Store │ ├── community │ │ ├── config │ │ │ ├── eggs │ │ │ │ ├── Pterodactyl_Create_New_Egg.png │ │ │ │ ├── Pterodactyl_Create_New_Egg_Copy_Settings_From.png │ │ │ │ ├── Pterodactyl_Create_New_Egg_Process_Management.png │ │ │ │ ├── Pterodactyl_Create_New_Egg_Select.png │ │ │ │ ├── Pterodactyl_Create_New_Egg_Startup.png │ │ │ │ ├── Pterodactyl_Create_New_Egg_Variables.png │ │ │ │ └── Pterodactyl_Create_New_Nest.png │ │ │ └── nodes │ │ │ │ ├── pterodactyl_add_node_config.png │ │ │ │ ├── pterodactyl_add_node_create_button.png │ │ │ │ ├── pterodactyl_add_node_new_page.png │ │ │ │ └── pterodactyl_node_tab.png │ │ └── games │ │ │ └── minecraft │ │ │ └── proxy │ │ │ ├── bungee-config.png │ │ │ ├── node-allocations.png │ │ │ ├── paper-server.properties.png │ │ │ └── paper-spigot.yml.png │ ├── daemon_configuration_example.png │ ├── doc_pterry.png │ ├── example_setup.png │ ├── favicons │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon-precomposed.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── mstile-150x150.png │ │ ├── safari-pinned-tab.svg │ │ └── site.webmanifest │ ├── frontpage │ │ └── loading.svg │ ├── gmod_mount_example.png │ ├── logos │ │ ├── banner_logo.png │ │ ├── pterry.svg │ │ └── square_pterry_blue-bg.png │ ├── node_allocations.png │ ├── pterodactyl-flat.png │ ├── pterodactyl-flat.svg │ ├── pterodactyl.png │ ├── simple_setup_diagram.png │ └── wings_configuration_example.png └── theme │ ├── DropdownLink.vue │ ├── DropdownTransition.vue │ ├── Home.vue │ ├── Layout.vue │ ├── NavLink.vue │ ├── NavLinks.vue │ ├── Navbar.vue │ ├── NotFound.vue │ ├── Page.vue │ ├── SearchBox.vue │ ├── Sidebar.vue │ ├── SidebarButton.vue │ ├── SidebarGroup.vue │ ├── SidebarLink.vue │ ├── SlickCarousel.vue │ ├── VersionSelect.vue │ ├── VersionSelectItem.vue │ ├── fonts │ ├── et-line │ │ ├── et-line.eot │ │ ├── et-line.svg │ │ ├── et-line.ttf │ │ └── et-line.woff │ └── slick │ │ ├── slick.eot │ │ ├── slick.svg │ │ ├── slick.ttf │ │ └── slick.woff │ ├── search.svg │ ├── styles │ ├── badges.css │ ├── code.css │ ├── etline.css │ ├── home.css │ ├── layout.css │ ├── main.css │ ├── nav.css │ ├── notices.css │ ├── sidebar.css │ ├── slick.css │ ├── tabs.css │ ├── text.css │ └── variables.css │ └── util.js ├── 404.md ├── LICENSE ├── README.md ├── community ├── about.md ├── config │ ├── eggs │ │ ├── creating_a_custom_egg.md │ │ └── creating_a_custom_image.md │ └── nodes │ │ └── add_node.md ├── customization │ ├── panel.md │ └── wings.md ├── games │ └── minecraft.md ├── installation-guides │ ├── panel │ │ ├── centos7.md │ │ ├── centos8.md │ │ └── debian.md │ └── wings │ │ ├── centos7.md │ │ └── centos8.md └── tutorials │ └── artisan.md ├── daemon └── 0.6 │ ├── configuration.md │ ├── installing.md │ ├── kernel_modifications.md │ ├── standalone_sftp.md │ ├── upgrade │ ├── 0.4_to_0.5.md │ ├── 0.5.md │ ├── 0.5_to_0.6.md │ └── 0.6.md │ └── upgrading.md ├── deploy.sh ├── guides ├── mounts.md └── php_upgrade.md ├── package.json ├── panel ├── 0.7 │ ├── configuration.md │ ├── getting_started.md │ ├── troubleshooting.md │ ├── upgrade │ │ ├── 0.6_to_0.7.md │ │ └── 0.7.md │ ├── upgrading.md │ └── webserver_configuration.md └── 1.0 │ ├── additional_configuration.md │ ├── getting_started.md │ ├── legacy_upgrade.md │ ├── troubleshooting.md │ ├── updating.md │ └── webserver_configuration.md ├── project ├── about.md ├── community.md ├── introduction.md └── terms.md ├── tailwind.js ├── tutorials ├── creating_ssl_certificates.md └── mysql_setup.md ├── wings └── 1.0 │ ├── configuration.md │ ├── installing.md │ ├── migrating.md │ └── upgrading.md └── yarn.lock /.github/workflows/github-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.github/workflows/github-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .vuepress/dist 3 | node_modules/ 4 | 5 | yarn-error.log 6 | -------------------------------------------------------------------------------- /.snippets/webservers/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.snippets/webservers/Caddyfile -------------------------------------------------------------------------------- /.snippets/webservers/Caddyfile-nossl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.snippets/webservers/Caddyfile-nossl -------------------------------------------------------------------------------- /.snippets/webservers/apache-nossl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.snippets/webservers/apache-nossl.conf -------------------------------------------------------------------------------- /.snippets/webservers/apache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.snippets/webservers/apache.conf -------------------------------------------------------------------------------- /.snippets/webservers/nginx-centos.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.snippets/webservers/nginx-centos.conf -------------------------------------------------------------------------------- /.snippets/webservers/nginx-nossl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.snippets/webservers/nginx-nossl.conf -------------------------------------------------------------------------------- /.snippets/webservers/nginx-php8.3-nossl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.snippets/webservers/nginx-php8.3-nossl.conf -------------------------------------------------------------------------------- /.snippets/webservers/nginx-php8.3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.snippets/webservers/nginx-php8.3.conf -------------------------------------------------------------------------------- /.snippets/webservers/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.snippets/webservers/nginx.conf -------------------------------------------------------------------------------- /.vuepress/components/Badge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/components/Badge.vue -------------------------------------------------------------------------------- /.vuepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/config.js -------------------------------------------------------------------------------- /.vuepress/enhanceApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/enhanceApp.js -------------------------------------------------------------------------------- /.vuepress/public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/.DS_Store -------------------------------------------------------------------------------- /.vuepress/public/community/config/eggs/Pterodactyl_Create_New_Egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/community/config/eggs/Pterodactyl_Create_New_Egg.png -------------------------------------------------------------------------------- /.vuepress/public/community/config/eggs/Pterodactyl_Create_New_Egg_Copy_Settings_From.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/community/config/eggs/Pterodactyl_Create_New_Egg_Copy_Settings_From.png -------------------------------------------------------------------------------- /.vuepress/public/community/config/eggs/Pterodactyl_Create_New_Egg_Process_Management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/community/config/eggs/Pterodactyl_Create_New_Egg_Process_Management.png -------------------------------------------------------------------------------- /.vuepress/public/community/config/eggs/Pterodactyl_Create_New_Egg_Select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/community/config/eggs/Pterodactyl_Create_New_Egg_Select.png -------------------------------------------------------------------------------- /.vuepress/public/community/config/eggs/Pterodactyl_Create_New_Egg_Startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/community/config/eggs/Pterodactyl_Create_New_Egg_Startup.png -------------------------------------------------------------------------------- /.vuepress/public/community/config/eggs/Pterodactyl_Create_New_Egg_Variables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/community/config/eggs/Pterodactyl_Create_New_Egg_Variables.png -------------------------------------------------------------------------------- /.vuepress/public/community/config/eggs/Pterodactyl_Create_New_Nest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/community/config/eggs/Pterodactyl_Create_New_Nest.png -------------------------------------------------------------------------------- /.vuepress/public/community/config/nodes/pterodactyl_add_node_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/community/config/nodes/pterodactyl_add_node_config.png -------------------------------------------------------------------------------- /.vuepress/public/community/config/nodes/pterodactyl_add_node_create_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/community/config/nodes/pterodactyl_add_node_create_button.png -------------------------------------------------------------------------------- /.vuepress/public/community/config/nodes/pterodactyl_add_node_new_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/community/config/nodes/pterodactyl_add_node_new_page.png -------------------------------------------------------------------------------- /.vuepress/public/community/config/nodes/pterodactyl_node_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/community/config/nodes/pterodactyl_node_tab.png -------------------------------------------------------------------------------- /.vuepress/public/community/games/minecraft/proxy/bungee-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/community/games/minecraft/proxy/bungee-config.png -------------------------------------------------------------------------------- /.vuepress/public/community/games/minecraft/proxy/node-allocations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/community/games/minecraft/proxy/node-allocations.png -------------------------------------------------------------------------------- /.vuepress/public/community/games/minecraft/proxy/paper-server.properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/community/games/minecraft/proxy/paper-server.properties.png -------------------------------------------------------------------------------- /.vuepress/public/community/games/minecraft/proxy/paper-spigot.yml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/community/games/minecraft/proxy/paper-spigot.yml.png -------------------------------------------------------------------------------- /.vuepress/public/daemon_configuration_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/daemon_configuration_example.png -------------------------------------------------------------------------------- /.vuepress/public/doc_pterry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/doc_pterry.png -------------------------------------------------------------------------------- /.vuepress/public/example_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/example_setup.png -------------------------------------------------------------------------------- /.vuepress/public/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /.vuepress/public/favicons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/favicons/android-chrome-512x512.png -------------------------------------------------------------------------------- /.vuepress/public/favicons/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/favicons/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /.vuepress/public/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /.vuepress/public/favicons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/favicons/browserconfig.xml -------------------------------------------------------------------------------- /.vuepress/public/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /.vuepress/public/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /.vuepress/public/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/favicons/favicon.ico -------------------------------------------------------------------------------- /.vuepress/public/favicons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/favicons/mstile-150x150.png -------------------------------------------------------------------------------- /.vuepress/public/favicons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/favicons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /.vuepress/public/favicons/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/favicons/site.webmanifest -------------------------------------------------------------------------------- /.vuepress/public/frontpage/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/frontpage/loading.svg -------------------------------------------------------------------------------- /.vuepress/public/gmod_mount_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/gmod_mount_example.png -------------------------------------------------------------------------------- /.vuepress/public/logos/banner_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/logos/banner_logo.png -------------------------------------------------------------------------------- /.vuepress/public/logos/pterry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/logos/pterry.svg -------------------------------------------------------------------------------- /.vuepress/public/logos/square_pterry_blue-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/logos/square_pterry_blue-bg.png -------------------------------------------------------------------------------- /.vuepress/public/node_allocations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/node_allocations.png -------------------------------------------------------------------------------- /.vuepress/public/pterodactyl-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/pterodactyl-flat.png -------------------------------------------------------------------------------- /.vuepress/public/pterodactyl-flat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/pterodactyl-flat.svg -------------------------------------------------------------------------------- /.vuepress/public/pterodactyl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/pterodactyl.png -------------------------------------------------------------------------------- /.vuepress/public/simple_setup_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/simple_setup_diagram.png -------------------------------------------------------------------------------- /.vuepress/public/wings_configuration_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/public/wings_configuration_example.png -------------------------------------------------------------------------------- /.vuepress/theme/DropdownLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/DropdownLink.vue -------------------------------------------------------------------------------- /.vuepress/theme/DropdownTransition.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/DropdownTransition.vue -------------------------------------------------------------------------------- /.vuepress/theme/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/Home.vue -------------------------------------------------------------------------------- /.vuepress/theme/Layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/Layout.vue -------------------------------------------------------------------------------- /.vuepress/theme/NavLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/NavLink.vue -------------------------------------------------------------------------------- /.vuepress/theme/NavLinks.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/NavLinks.vue -------------------------------------------------------------------------------- /.vuepress/theme/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/Navbar.vue -------------------------------------------------------------------------------- /.vuepress/theme/NotFound.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/NotFound.vue -------------------------------------------------------------------------------- /.vuepress/theme/Page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/Page.vue -------------------------------------------------------------------------------- /.vuepress/theme/SearchBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/SearchBox.vue -------------------------------------------------------------------------------- /.vuepress/theme/Sidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/Sidebar.vue -------------------------------------------------------------------------------- /.vuepress/theme/SidebarButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/SidebarButton.vue -------------------------------------------------------------------------------- /.vuepress/theme/SidebarGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/SidebarGroup.vue -------------------------------------------------------------------------------- /.vuepress/theme/SidebarLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/SidebarLink.vue -------------------------------------------------------------------------------- /.vuepress/theme/SlickCarousel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/SlickCarousel.vue -------------------------------------------------------------------------------- /.vuepress/theme/VersionSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/VersionSelect.vue -------------------------------------------------------------------------------- /.vuepress/theme/VersionSelectItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/VersionSelectItem.vue -------------------------------------------------------------------------------- /.vuepress/theme/fonts/et-line/et-line.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/fonts/et-line/et-line.eot -------------------------------------------------------------------------------- /.vuepress/theme/fonts/et-line/et-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/fonts/et-line/et-line.svg -------------------------------------------------------------------------------- /.vuepress/theme/fonts/et-line/et-line.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/fonts/et-line/et-line.ttf -------------------------------------------------------------------------------- /.vuepress/theme/fonts/et-line/et-line.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/fonts/et-line/et-line.woff -------------------------------------------------------------------------------- /.vuepress/theme/fonts/slick/slick.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/fonts/slick/slick.eot -------------------------------------------------------------------------------- /.vuepress/theme/fonts/slick/slick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/fonts/slick/slick.svg -------------------------------------------------------------------------------- /.vuepress/theme/fonts/slick/slick.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/fonts/slick/slick.ttf -------------------------------------------------------------------------------- /.vuepress/theme/fonts/slick/slick.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/fonts/slick/slick.woff -------------------------------------------------------------------------------- /.vuepress/theme/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/search.svg -------------------------------------------------------------------------------- /.vuepress/theme/styles/badges.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/styles/badges.css -------------------------------------------------------------------------------- /.vuepress/theme/styles/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/styles/code.css -------------------------------------------------------------------------------- /.vuepress/theme/styles/etline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/styles/etline.css -------------------------------------------------------------------------------- /.vuepress/theme/styles/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/styles/home.css -------------------------------------------------------------------------------- /.vuepress/theme/styles/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/styles/layout.css -------------------------------------------------------------------------------- /.vuepress/theme/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/styles/main.css -------------------------------------------------------------------------------- /.vuepress/theme/styles/nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/styles/nav.css -------------------------------------------------------------------------------- /.vuepress/theme/styles/notices.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/styles/notices.css -------------------------------------------------------------------------------- /.vuepress/theme/styles/sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/styles/sidebar.css -------------------------------------------------------------------------------- /.vuepress/theme/styles/slick.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/styles/slick.css -------------------------------------------------------------------------------- /.vuepress/theme/styles/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/styles/tabs.css -------------------------------------------------------------------------------- /.vuepress/theme/styles/text.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/styles/text.css -------------------------------------------------------------------------------- /.vuepress/theme/styles/variables.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vuepress/theme/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/.vuepress/theme/util.js -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/README.md -------------------------------------------------------------------------------- /community/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/community/about.md -------------------------------------------------------------------------------- /community/config/eggs/creating_a_custom_egg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/community/config/eggs/creating_a_custom_egg.md -------------------------------------------------------------------------------- /community/config/eggs/creating_a_custom_image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/community/config/eggs/creating_a_custom_image.md -------------------------------------------------------------------------------- /community/config/nodes/add_node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/community/config/nodes/add_node.md -------------------------------------------------------------------------------- /community/customization/panel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/community/customization/panel.md -------------------------------------------------------------------------------- /community/customization/wings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/community/customization/wings.md -------------------------------------------------------------------------------- /community/games/minecraft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/community/games/minecraft.md -------------------------------------------------------------------------------- /community/installation-guides/panel/centos7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/community/installation-guides/panel/centos7.md -------------------------------------------------------------------------------- /community/installation-guides/panel/centos8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/community/installation-guides/panel/centos8.md -------------------------------------------------------------------------------- /community/installation-guides/panel/debian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/community/installation-guides/panel/debian.md -------------------------------------------------------------------------------- /community/installation-guides/wings/centos7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/community/installation-guides/wings/centos7.md -------------------------------------------------------------------------------- /community/installation-guides/wings/centos8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/community/installation-guides/wings/centos8.md -------------------------------------------------------------------------------- /community/tutorials/artisan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/community/tutorials/artisan.md -------------------------------------------------------------------------------- /daemon/0.6/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/daemon/0.6/configuration.md -------------------------------------------------------------------------------- /daemon/0.6/installing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/daemon/0.6/installing.md -------------------------------------------------------------------------------- /daemon/0.6/kernel_modifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/daemon/0.6/kernel_modifications.md -------------------------------------------------------------------------------- /daemon/0.6/standalone_sftp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/daemon/0.6/standalone_sftp.md -------------------------------------------------------------------------------- /daemon/0.6/upgrade/0.4_to_0.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/daemon/0.6/upgrade/0.4_to_0.5.md -------------------------------------------------------------------------------- /daemon/0.6/upgrade/0.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/daemon/0.6/upgrade/0.5.md -------------------------------------------------------------------------------- /daemon/0.6/upgrade/0.5_to_0.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/daemon/0.6/upgrade/0.5_to_0.6.md -------------------------------------------------------------------------------- /daemon/0.6/upgrade/0.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/daemon/0.6/upgrade/0.6.md -------------------------------------------------------------------------------- /daemon/0.6/upgrading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/daemon/0.6/upgrading.md -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/deploy.sh -------------------------------------------------------------------------------- /guides/mounts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/guides/mounts.md -------------------------------------------------------------------------------- /guides/php_upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/guides/php_upgrade.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/package.json -------------------------------------------------------------------------------- /panel/0.7/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/panel/0.7/configuration.md -------------------------------------------------------------------------------- /panel/0.7/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/panel/0.7/getting_started.md -------------------------------------------------------------------------------- /panel/0.7/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/panel/0.7/troubleshooting.md -------------------------------------------------------------------------------- /panel/0.7/upgrade/0.6_to_0.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/panel/0.7/upgrade/0.6_to_0.7.md -------------------------------------------------------------------------------- /panel/0.7/upgrade/0.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/panel/0.7/upgrade/0.7.md -------------------------------------------------------------------------------- /panel/0.7/upgrading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/panel/0.7/upgrading.md -------------------------------------------------------------------------------- /panel/0.7/webserver_configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/panel/0.7/webserver_configuration.md -------------------------------------------------------------------------------- /panel/1.0/additional_configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/panel/1.0/additional_configuration.md -------------------------------------------------------------------------------- /panel/1.0/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/panel/1.0/getting_started.md -------------------------------------------------------------------------------- /panel/1.0/legacy_upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/panel/1.0/legacy_upgrade.md -------------------------------------------------------------------------------- /panel/1.0/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/panel/1.0/troubleshooting.md -------------------------------------------------------------------------------- /panel/1.0/updating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/panel/1.0/updating.md -------------------------------------------------------------------------------- /panel/1.0/webserver_configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/panel/1.0/webserver_configuration.md -------------------------------------------------------------------------------- /project/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/project/about.md -------------------------------------------------------------------------------- /project/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/project/community.md -------------------------------------------------------------------------------- /project/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/project/introduction.md -------------------------------------------------------------------------------- /project/terms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/project/terms.md -------------------------------------------------------------------------------- /tailwind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/tailwind.js -------------------------------------------------------------------------------- /tutorials/creating_ssl_certificates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/tutorials/creating_ssl_certificates.md -------------------------------------------------------------------------------- /tutorials/mysql_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/tutorials/mysql_setup.md -------------------------------------------------------------------------------- /wings/1.0/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/wings/1.0/configuration.md -------------------------------------------------------------------------------- /wings/1.0/installing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/wings/1.0/installing.md -------------------------------------------------------------------------------- /wings/1.0/migrating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/wings/1.0/migrating.md -------------------------------------------------------------------------------- /wings/1.0/upgrading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/wings/1.0/upgrading.md -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/documentation/HEAD/yarn.lock --------------------------------------------------------------------------------