Code in this video_How to Install and Configure Snipe-IT (IT Asset Management) on Ubuntu / Debian
📌 Replace the highlighted orange section with your information sudo apt install -y openssl curl git wget zip vim php-opcache php-pdo php-bcmath php-calendar php-ctype php-fileinfo php-ftp php-gd php-intl php-json php-ldap php-mbstring php-mysqli php-posix php-readline php-sockets php-bz2 php-tokenizer php-zip php-curl php-iconv php-phar sudo curl -sS https://getcomposer.org/installer | php sudo mv composer.phar /usr/local/bin/composer CREATE DATABASE snipe_db; CREATE USER snipe_user@localhost IDENTIFIED BY 'snipe_PWD'; GRANT ALL ON snipe_db.* to snipe_user@localhost; FLUSH PRIVILEGES; sudo git clone https://github.com/snipe/snipe-it snipe-it sudo composer update --no-plugins --no-scripts sudo composer install --no-dev --prefer-source --no-plugins --no-scripts sudo php artisan key:generate <VirtualHost *:80> ServerName localhost DocumentRoot /var/www/html/snipe-it/public <Directory /var/www/html/snipe-it/public> Options Indexes FollowSymLinks MultiViews AllowOverride All Order allow,deny Allow from all </Directory> </VirtualHost>