Disclaimer: This guide was automatically translated by AI from the German original. Please verify commands and technical details before using them.
Back to overview: Debian guides
Install the dependencies:
apt -y install libapache2-mod-php7.4 php7.4-mbstring php7.4-xml php7.4-common php7.4-sqlite3 php7.4-zip git
Warning: Make sure to adjust the PHP version.
Create a new folder in /usr/share:
cd /usr/share && mkdir heimdall
cd heimdall/
Download Heimdall:
git clone -q https://github.com/linuxserver/Heimdall.git /usr/share/heimdall
Set permissions:
chown -R www-data:www-data /usr/share/heimdall/
chmod -R 755 /usr/share/heimdall/
Link the public folder into the web root:
ln -s /usr/share/heimdall/public/ /var/www/html
Rename it as desired:
mv public heimdall
Run the following commands:
cp .env.example .env && php artisan key:generate
Start the development server:
php artisan serve --host 0.0.0.0
Open http://ip-or-domain:8000 to customize the dashboard.