From a7416192ad801b6c7e2bab55de6fe8091457fe44 Mon Sep 17 00:00:00 2001 From: nobleskye Date: Thu, 9 Jul 2026 19:30:58 -0700 Subject: [PATCH 1/2] changed pyroignore to hydroignore --- content/docs/hydrodactyl/automated.mdx | 59 ++++++++++++++++--- .../installation/fresh-installation.mdx | 8 --- .../misc/{pyroignore.mdx => hydroignore.mdx} | 14 ++--- content/docs/hydrodactyl/misc/index.mdx | 4 +- .../docs/hydrodactyl/misc/troubleshooting.mdx | 2 +- 5 files changed, 62 insertions(+), 25 deletions(-) rename content/docs/hydrodactyl/misc/{pyroignore.mdx => hydroignore.mdx} (68%) diff --git a/content/docs/hydrodactyl/automated.mdx b/content/docs/hydrodactyl/automated.mdx index a2727d0..53119b4 100644 --- a/content/docs/hydrodactyl/automated.mdx +++ b/content/docs/hydrodactyl/automated.mdx @@ -1,12 +1,57 @@ --- title: Automated Installation -description: Automated installer for Hydrodactyl (currently unavailable) +description: A simple script-based installer for Hydrodactyl --- - - Automated installer currently unavailable. Endpoint down / unmaintained. Use [manual installation](https://hydrodactyl.dev/docs/hydrodactyl/installation) instead until this notice removed. - +# Automated Installation - - Need help? Join Discord: [https://discord.gg/mnTJVSSaKp](https://discord.gg/mnTJVSSaKp) - +A simple script-based installer for Hydrodactyl + +## Easy Script Installation + +**Community-maintained script (not officially maintained by the Hydrodactyl team)** + +A community member has built an automated installer to get Hydrodactyl up and running quickly — no deep technical knowledge required. + +Whether you're an experienced sysadmin or setting up your first game server, this script makes the installation process straightforward and hassle-free. + +## Quickstart + +### System requirements + +#### Minimum Requirements + +| Component | Specification | +|---|---| +| **CPU** | 2 cores (x86_64 or ARM64) | +| **RAM** | 2 GB | +| **Storage** | 20 GB SSD | +| **Network** | Public IPv4 or IPv6 | +| **OS** | Ubuntu 22.04/24.04, Debian 11/12, Rocky Linux 8/9, AlmaLinux 8/9 | + +#### Recommended Requirements + +| Component | Specification | +|---|---| +| **CPU** | 4+ cores | +| **RAM** | 4+ GB | +| **Storage** | 50+ GB SSD | +| **Network** | Both IPv4 and IPv6 | + +## Installing + +This script is in an experimental state, and there may be bugs, please report any and all bugs/errors in the GitHub repo. + +The auto updater is in a **VERY** experimental state and may have more bugs/issues than the rest of the installer. + +``` +bash <(curl -sSL https://gethydro.cc) +``` + +See something you think you can fix? Give it a shot! We are always accepting PRs! + +## For more in-depth information, docs, and options + +consider visiting the hydro-installer repository on GitHub. + +Need help or running into issues? Join our Discord community at [https://discord.gg/mnTJVSSaKp](https://discord.gg/mnTJVSSaKp) for support and the latest updates. diff --git a/content/docs/hydrodactyl/installation/fresh-installation.mdx b/content/docs/hydrodactyl/installation/fresh-installation.mdx index 9bbace9..401f5d7 100644 --- a/content/docs/hydrodactyl/installation/fresh-installation.mdx +++ b/content/docs/hydrodactyl/installation/fresh-installation.mdx @@ -63,14 +63,6 @@ This comprehensive guide walks you through setting up Hydrodactyl using Docker, - Configuration tab: Copy the contents to /etc/elytra/config.yml on your backend server - Allocation tab: Add some allocations to use for your servers. The IP should be 0.0.0.0. If you want to show a different IP in the UI (e.g. a subdomain), add an alias. You can input a range of ports like 25565-26000 -## Elytra Installation - - -As of release 5.0, Hydrodactyl is compatible with both [Pterodactyl Wings](https://pterodactyl.io/wings/1.0/installing.html) and [Pyro Inc.© Elytra](/docs/elytra). -You can find info to install at [Elytra Docs](/docs/elytra/installation) - - - ## Post-Installation Steps ### Email Configuration diff --git a/content/docs/hydrodactyl/misc/pyroignore.mdx b/content/docs/hydrodactyl/misc/hydroignore.mdx similarity index 68% rename from content/docs/hydrodactyl/misc/pyroignore.mdx rename to content/docs/hydrodactyl/misc/hydroignore.mdx index a8ba026..f3ee8a3 100644 --- a/content/docs/hydrodactyl/misc/pyroignore.mdx +++ b/content/docs/hydrodactyl/misc/hydroignore.mdx @@ -1,15 +1,15 @@ --- -title: PyroIgnore -description: How the Pyro Ignore file works and what it does +title: HydroIgnore +description: How the Hydro Ignore file works and what it does --- -# What is a .pyroignore file? +# What is a .hydroignore file? -The `.pyroignore` file is Hydrodactyl's version of the `.pteroignore` file. It allows you to specify files and directories that should be excluded from server backups. When you create a backup, Hydrodactyl reads this file and skips any files or directories that match the patterns defined within. +The `.hydroignore` file is Hydrodactyl's version of the `.pteroignore` file. It allows you to specify files and directories that should be excluded from server backups. When you create a backup, Hydrodactyl reads this file and skips any files or directories that match the patterns defined within. ## How it works -The `.pyroignore` file should be placed in the root directory of your server. Each line in the file represents a pattern to exclude from backups. +The `.hydroignore` file should be placed in the root directory of your server. Each line in the file represents a pattern to exclude from backups. ## Pattern matching @@ -91,6 +91,6 @@ node_modules/ ## Limitations -- The `.pyroignore` file only affects backups, not file operations in the live server +- The `.hydroignore` file only affects backups, not file operations in the live server - Patterns are matched against the full file path from the server root -- Some system files may always be excluded regardless of the `.pyroignore` file +- Some system files may always be excluded regardless of the `.hydroignore` file diff --git a/content/docs/hydrodactyl/misc/index.mdx b/content/docs/hydrodactyl/misc/index.mdx index bb5c29f..83e0e3c 100644 --- a/content/docs/hydrodactyl/misc/index.mdx +++ b/content/docs/hydrodactyl/misc/index.mdx @@ -8,8 +8,8 @@ description: Additional guides, configurations, and utilities for Hydrodactyl This section contains various guides, configuration options, and utilities that don't fit neatly into other categories but are valuable for Hydrodactyl users. - - Configure backup exclusions using .pyroignore files + + Configure backup exclusions using .hydroignore files Common issues and their solutions diff --git a/content/docs/hydrodactyl/misc/troubleshooting.mdx b/content/docs/hydrodactyl/misc/troubleshooting.mdx index 8e2f5e8..46e8d6d 100644 --- a/content/docs/hydrodactyl/misc/troubleshooting.mdx +++ b/content/docs/hydrodactyl/misc/troubleshooting.mdx @@ -213,7 +213,7 @@ This guide covers common issues users encounter with Hydrodactyl and their solut **Problem**: Backups take extremely long to complete. **Solutions**: -1. Use `.pyroignore` file to exclude large directories +1. Use `.hydroignore` file to exclude large directories 2. Configure backup compression: ```bash BACKUP_COMPRESSION_LEVEL=6 From d0efa9593e059997e0a2efb751ce713e38b83772 Mon Sep 17 00:00:00 2001 From: nobleskye Date: Thu, 9 Jul 2026 19:35:20 -0700 Subject: [PATCH 2/2] modifed automated install script to use gethydro.cc --- content/docs/hydrodactyl/automated.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/docs/hydrodactyl/automated.mdx b/content/docs/hydrodactyl/automated.mdx index 53119b4..4bb9f5b 100644 --- a/content/docs/hydrodactyl/automated.mdx +++ b/content/docs/hydrodactyl/automated.mdx @@ -1,6 +1,6 @@ --- title: Automated Installation -description: A simple script-based installer for Hydrodactyl +description: A simple script-based installer for Hydrodactyl & Wings --- # Automated Installation @@ -42,7 +42,7 @@ Whether you're an experienced sysadmin or setting up your first game server, thi This script is in an experimental state, and there may be bugs, please report any and all bugs/errors in the GitHub repo. -The auto updater is in a **VERY** experimental state and may have more bugs/issues than the rest of the installer. +The auto updater is in a **VERY** experimental state and may have bugs/issues than the rest of the installer. ``` bash <(curl -sSL https://gethydro.cc) @@ -52,6 +52,6 @@ See something you think you can fix? Give it a shot! We are always accepting PRs ## For more in-depth information, docs, and options -consider visiting the hydro-installer repository on GitHub. +consider visiting the hydro-installer repository on [GitHub](https://github.com/NobleSkye/hydro-installer). -Need help or running into issues? Join our Discord community at [https://discord.gg/mnTJVSSaKp](https://discord.gg/mnTJVSSaKp) for support and the latest updates. +Need help or running into issues? Join our Discord community at [https://discord.gg/kGD4HEgcpn](https://discord.gg/kGD4HEgcpn) for support and the latest updates.