Update switch_to_non_root.md

chmod requires "-R" to be Recursive, not "-r"
This commit is contained in:
Tack 2022-09-14 16:51:10 +00:00
parent da102618a0
commit 23c797ef64

View File

@ -15,7 +15,7 @@ First, log in as your sudo user and run the following commands in order:
```shell ```shell
sudo chown -R allianceserver: /home/allianceserver sudo chown -R allianceserver: /home/allianceserver
sudo chown -R allianceserver: /var/www/myauth sudo chown -R allianceserver: /var/www/myauth
sudo chmod -r 655 /var/www/myauth sudo chmod -R 655 /var/www/myauth
``` ```
That's it. Your AA installation is now configured to be maintained with the `allianceserver` user. That's it. Your AA installation is now configured to be maintained with the `allianceserver` user.