SquidGuard is a URL redirector used to use blacklists with the proxysoftware Squid. There are two big advantages to squidguard: it is fast and it is free.
Drupal 11
Drupal after version 7 is best managed using Composer
yum -y install git zip
cd /extra/src
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php -r "if (hash_file('sha384', 'composer-setup.php') === 'dac665fdc30fdd8ec78b38b9800061b4150413ff2e3b6f88543c636f7cd84f6db9189d43a81e5503cda447da73c7e5b6') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
php composer-setup.php
php -r "unlink('composer-setup.php');"
mv composer.phar /usr/local/bin/composer
Composer shouldn't be run as root to manage a Drupal site:
groupadd drupal
useradd -g drupal drupal
chown drupal /var/websites
Once Composer is installed, download the Drupal core:
cd /var/websites
composer create-project drupal/recommended-project my_site_name_dir
- Log in to post comments