# CentOS 8 In this guide we will install Pterodactyl's Wings v1.X — including all of it's dependencies — and configure it to use a SSL connection. [[toc]] ::: tip This guide is based off the [official installation documentation](/wings/1.0/installing.md) but is tailored specifically for CentOS 8. ::: ## Install Requirements We will first begin by installing all of the Wings' [required](/wings/1.0/installing.md#dependencies) dependencies. ### Docker ```bash dnf install -y dnf-utils device-mapper-persistent-data lvm2 dnf config-manager --add-repo=https://download.docker.com/linux/centos/docker-ce.repo dnf install -y docker-ce --nobest systemctl enable docker systemctl start docker ``` ### FirewallD changes ```bash firewall-cmd --add-port 8080/tcp --permanent firewall-cmd --add-port 2022/tcp --permanent firewall-cmd --permanent --zone=trusted --change-interface=pterodactyl0 firewall-cmd --zone=trusted --add-masquerade --permanent firewall-cmd --reload ``` ## Installing the Wings Great, now all of the dependencies and firewall rules have been dealt with. From here follow the [official Wings installation documentation](/wings/1.0/installing.md#installing-wings-1).