diff --git a/community/installation-guides/panel/centos8.md b/community/installation-guides/panel/centos8.md index 8a6cfff7c..a02f92807 100644 --- a/community/installation-guides/panel/centos8.md +++ b/community/installation-guides/panel/centos8.md @@ -79,6 +79,23 @@ sudo systemctl enable --now php-fpm Excellent, we now have all of the required dependencies installed and configured. From here, follow the [official Panel installation documentation](/panel/1.0/getting_started.md#download-files). -::: tip +::: warning You will need to change the fastcgi_pass path in the Nginx configuration to `/var/run/php-fpm/pterodactyl.sock` -::: \ No newline at end of file +::: + +::: warning +If you complete the [official Panel installation documentation](/panel/1.0/getting_started.md#download-files) but get a HTTP 500 error code and "Permission Denied" errors in `/var/log/nginx/pterodactyl.app-error.log`, you may need to run the following commands: + +``` bash +sudo chcon -R -t httpd_sys_rw_content_t storage +sudo chcon -R -t httpd_sys_rw_content_t bootstrap/cache +``` +::: + +::: warning +If you get "Permission denied \[tcp://127.0.0.1:6379\]" in your laravel log (`/var/www/pterodactyl/storage/logs/laravel-TODAYS-DATE.log`), you may need to run the following commands: + +``` bash +sudo setsebool httpd_can_network_connect=1 +``` +:::