Skip to content

Manual Installation

kouhei edited this page Sep 15, 2022 · 7 revisions

Ubuntu20.04 LTS

Install squid

apt install squid apt install libmysqlclient-dev

# squid -v
Squid Cache: Version 5.2

Install Apache2 and MariaDB,PHP

apt install php8.1
apt install php8.1-gd php8.1-xml php8.1-mbstring php8.1-mysql php8.1-curl
apt install apache2
cd /var/www/
git clone -b v2.0 https://github.com/39ff/squid-db-auth-web
wget https://getcomposer.org/download/latest-stable/composer.phar
chmod +x composer.phar
./composer.phar install
curl -LsS https://r.mariadb.com/downloads/mariadb_repo_setup | sudo bash
apt install mariadb-server

Configure squid.conf

CentOS7

yum install perl-DBD-mysql

squidmin Setup

Create an Administrator

php artisan db:seed --class=CreateAdministratorSeeder
Clone this wiki locally