docs(pterodactyl): flushed out the docs more
This commit is contained in:
parent
12862ccea7
commit
45797361a6
4 changed files with 248 additions and 142 deletions
81
.docs/pterodactyl/getting-started.md
Normal file
81
.docs/pterodactyl/getting-started.md
Normal file
|
@ -0,0 +1,81 @@
|
|||
# Getting Started
|
||||
|
||||
This page will go over the steps required to get started with the Pterodactyl cog.
|
||||
|
||||
/// admonition | Screenshots may be visually distinct
|
||||
type: info
|
||||
For the purpose of this guide, I'll be using [Bloom Host's](https://bloom.host/) [Pterodactyl fork](https://mc.bloom.host/).
|
||||
The steps should be basically identical for other panels, but screenshots will look visually different.
|
||||
If in doubt, contact your host's support.
|
||||
///
|
||||
|
||||
## Creating a sub-user
|
||||
|
||||
This is **optional**, but highly recommended, for security reasons.
|
||||
|
||||
Navigate to your `Users` page, and click the `New User` button.
|
||||
Type in an email address, and press `Select all permissions`.
|
||||
*The bot doesn't need all of the permissions you just gave it to function, we'll deal with that in a moment.*
|
||||
|
||||

|
||||
|
||||
Now, you'll need to check the email you just entered into the subusers page, and create an account. I won't cover this, as it'll change depending on what host you're using.
|
||||
|
||||
Moving on, the bot doesn't need all of the permissions you just gave it. This poses a security risk, should the bot be compromised. We can fix this by importing only the permissions the bot requires. Import the following string into your subuser's permissions.
|
||||
|
||||
```json
|
||||
["websocket.connect","control.read-console","control.console","control.start","control.stop","control.restart","startup.read","startup.update","settings.rename","settings.reinstall"]
|
||||
```
|
||||
|
||||

|
||||
|
||||
## Getting an API Key
|
||||
|
||||
**Log out of your primary account, and switch to the sub-user you just created.**
|
||||
|
||||
Navigate to your sub-user account's `API Credentials` page.
|
||||
|
||||

|
||||
|
||||
Create a new API key.
|
||||
|
||||

|
||||
|
||||
You don't have to specify an allowed IP if you don't want to, but I recommend it. If you chose to, you'll need to retrieve your bot's IP address. You can do this through SSH or through a cog like [AAA3A's IP cog](https://github.com/AAA3A-AAA3A/AAA3A-cogs).
|
||||
|
||||

|
||||
|
||||
Now, use the `[p]set api` command on your bot to add the API key.
|
||||
The format is as follows:
|
||||
|
||||
```
|
||||
# Service: pterodactyl
|
||||
# Keys and Tokens: api_key ptlc_...
|
||||
```
|
||||
|
||||

|
||||
|
||||
## Getting server information
|
||||
|
||||
There's some other information that the Pterodactyl cog needs to function.
|
||||
|
||||
First, get the base url for your panel. This does not include any extra information, like server ids, or whatnot. In my case, I'm using `https://mc.bloom.host/`.
|
||||
|
||||

|
||||
|
||||
Use the `[p]pterodactyl config url` command to set the URL the cog will use.
|
||||
In my case, I'd use `-pterodactyl config url https://mc.bloom.host/`.
|
||||
|
||||

|
||||
|
||||
Now, we need to get the id of your server. Navigate to the `Settings` page in your panel.
|
||||
|
||||

|
||||
|
||||
Use the `[p]pterodactyl config serverid` command to add the server id to the bot.
|
||||
In my case, I'd use `-pterodactyl config serverid ad712016-df3d-47a5-b1df-6b71baf50340`.
|
||||
|
||||

|
||||
|
||||
Once you've done all of this, you should see a connection message in the bot's logs. Now, we need to configure some other things.
|
||||
See the [Configuration](configuration.md) page for more information.
|
Loading…
Add table
Add a link
Reference in a new issue