Es ist einLXC-Container mit Debian 11.3.
apt install apache2 libapache2-mod-php7.4 php7.4 php7.4-curl php7.4-zip
wget https://github.com/reloxx13/TasmoAdmin/releases/download/v1.8.0/tasmoadmin_v1.8.0.tar.gz
tar xvfz tasmoadmin_v1.8.0.tar.gz -C /var/www/html
chown -R www-data:www-data /var/www/html/tasmoadmin
chmod 777 /var/www/html/tasmoadmin/tmp /var/www/html/tasmoadmin/data
// Apache /etc/apache2/sites-available/tasmoadmin.conf erstellen.
<VirtualHost *:9999>
ServerName tasmoadmin
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/tasmoadmin
<Directory /var/www/html/tasmoadmin>
AllowOverride All
Order allow,deny
allow from all
</Directory>
ErrorLog /var/log/apache2/error.log
LogLevel warn
CustomLog /var/log/apache2/access.log combined
ServerSignature On
</VirtualHost>
// Den Port 9999 in der /etc/apache2/ports.conf eintragen.
Listen 80
Listen 9999
// Die neue Site aktivieren, das rewrite Modul laden, Apache Service aktivieren und den Apache neu starten.
a2ensite tasmoadmin
a2enmod rewrite
systemctl enable apache2.service
systemctl restart apache2.service