From 068d5d50c8368cbdfad06bc509317889618486cc Mon Sep 17 00:00:00 2001 From: Dominika Jadowska Date: Sat, 12 Dec 2020 10:59:15 +0100 Subject: [PATCH] More grammar fixes --- community/customization/wings.md | 10 +++++----- guides/disabling-reCAPTCHA.md | 8 ++++++-- panel/1.0/additional_configuration.md | 5 +++-- 3 files changed, 14 insertions(+), 9 deletions(-) diff --git a/community/customization/wings.md b/community/customization/wings.md index ad756fd9..58e1ba9f 100644 --- a/community/customization/wings.md +++ b/community/customization/wings.md @@ -1,9 +1,9 @@ # Customizing Wings :::warning Production -We highly recommend **NOT** performing these actions on production +We highly recommend **NOT** performing these actions on the production ::: -In order to make changes to wings we recommend forking it to keep your own git version making upgrades easier.
+We recommend creating a fork of the repo before making changes to wings to make future upgrades easier.
:::tip Editing Files We do not provide a guide at the current time on what files to edit to get certain results. This guide expects a basic knowledge of the `Go` language ::: @@ -17,7 +17,7 @@ By default, Go targets the system it is executed on. Therefore, the easiest way You need to have an up-to-date version of the Go tools installed. See the [official instructions](https://golang.org/doc/install) for help with setting those up. ### Building -Running the following command in your local clone of the repository to compile wings into a binary. +Execute the following command in your local clone of the repository to compile wings into a binary. ```bash go build ``` @@ -25,7 +25,7 @@ You should now have a `wings` binary file in your wings directory. ## Install the new binary :::tip Root required -In order to execute the next few commands, you will need root permissions. If you are not logged in as root, either use `sudo` in front of each command, or run `sudo -i` to switch to a root session. +To execute the next few commands, you will need root permissions. If you are not logged in as root, either use `sudo` in front of each command, or run `sudo -i` to switch to a root session. ::: 1. Backup the current installation of wings @@ -37,6 +37,6 @@ systemctl stop wings mv /usr/local/bin/wings /usr/local/bin/wings-backup ``` 2. Place the new binary in `/usr/local/bin` -3. Ensure aproperiate permissions on the binary `chmod u+x /usr/local/bin/wings` +3. Ensure appropriate permissions on the binary `chmod u+x /usr/local/bin/wings` 4. Try running the updated binary from the console `wings --debug` 5. Restore normal operation of Wings `systemctl enable wings --now` diff --git a/guides/disabling-reCAPTCHA.md b/guides/disabling-reCAPTCHA.md index b08ecd3c..61778afa 100644 --- a/guides/disabling-reCAPTCHA.md +++ b/guides/disabling-reCAPTCHA.md @@ -1,13 +1,13 @@ # Disabling reCAPTCHA :::warning SECURITY WARNING -It is highly reccomended to keep reCAPTCHA enabled, as reCAPTCHA is a security method that can protect your site from some methods of attack! +It is highly recommended to keep reCAPTCHA enabled, as reCAPTCHA is a security method that can protect your site from some methods of attack! Only continue if you intend to re-enable reCAPTCHA after fixing whatever issue you may have! ::: ## Disabling via .env -In order to disable reCAPTCHA using this method, you need to find and edit your `.env` file, It is usually located at `/var/www/pterodactyl/.env` +To disable reCAPTCHA using this method, you need to find and edit your `.env` file, It is usually located at `/var/www/pterodactyl/.env` :::tip Hidden Files In linux, files starting with a `.` are considered to be hidden, so most FTP software may not show it by default. You can see the file by using `ls -a` @@ -21,6 +21,10 @@ cp .env .env.bkp You can now edit the `.env` file using your favorite editor to set the fields below +:::tip Missing Values +If any of the bellow values are missing from your `.env` file you can add them yourself +::: + ```bash # Ignores database settings APP_ENVIRONMENT_ONLY=true diff --git a/panel/1.0/additional_configuration.md b/panel/1.0/additional_configuration.md index 69a92bc7..9b59e05a 100644 --- a/panel/1.0/additional_configuration.md +++ b/panel/1.0/additional_configuration.md @@ -22,7 +22,8 @@ AWS_BACKUPS_BUCKET= AWS_ENDPOINT= -# Dunno what these are but maybe you do? -AWS_USE_PATH_STYLE_ENDPOINT=false AWS_BACKUPS_USE_ACCELERATE=false + +# This was/is planned to be depreciated by AWS thus if set to true it will fail the request. +AWS_USE_PATH_STYLE_ENDPOINT=false ```