diff --git a/docs/book/v1/faq.md b/docs/book/v1/faq.md index b64b3d6..1a5fac6 100644 --- a/docs/book/v1/faq.md +++ b/docs/book/v1/faq.md @@ -169,18 +169,18 @@ sudo dnf upgrade -y ## How do I delete a virtualhost? -If for whatever reason you want to delete a virtualhost, you need to do the following: +If for whatever reason you want to delete a virtualhost, for instance `to-be-deleted.localhost` you need to do the following: -* Delete the folder where are the files located +* Delete the folder where the files are located ```shell -sudo rm -rf /var/www/tobedeleted.localhost +sudo rm -rf /var/www/to-be-deleted.localhost ``` * Delete the Apache configuration file ```shell -sudo rm -f /etc/httpd/sites-available/desters.localhost.conf +sudo rm -f /etc/httpd/sites-available/to-be-deleted.localhost.conf ``` * Restart httpd server diff --git a/docs/book/v2/faq.md b/docs/book/v2/faq.md index 2656668..c9506c6 100644 --- a/docs/book/v2/faq.md +++ b/docs/book/v2/faq.md @@ -218,18 +218,18 @@ sudo systemctl restart mariadb ## How do I delete a virtualhost? -If for whatever reason you want to delete a virtualhost, you need to do the following: +If for whatever reason you want to delete a virtualhost, for instance `to-be-deleted.localhost` you need to do the following: * Delete the folder where are the files located ```shell -sudo rm -rf /var/www/tobedeleted.localhost +sudo rm -rf /var/www/to-be-deleted.localhost ``` * Delete the Apache configuration file ```shell -sudo rm -f /etc/httpd/sites-available/desters.localhost.conf +sudo rm -f /etc/httpd/sites-available/to-be-deleted.localhost.conf ``` * Restart httpd server