This guide installs FreeScout on a standard LAMP/LEMP stack.
Clone the dist branch and place it in your web root:
git clone -b dist https://github.com/freescout-helpdesk/freescout.git /var/www/freescout
Set the document root to /var/www/freescout/public and enable URL rewrites.
sudo mysql -u root -p
CREATE DATABASE freescout_db CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
CREATE USER 'freescout_user'@'localhost' IDENTIFIED BY 'StrongPassword123!';
GRANT ALL PRIVILEGES ON freescout_db.* TO 'freescout_user'@'localhost';
FLUSH PRIVILEGES;
EXIT;
Open http://example.com and complete the FreeScout installer.
Check the FreeScout installation guide or reach out via our contact page.