Hi,
I am trying to install personal inventory on an instance of Ubuntu 20.04 server running on a VM.
I followed the steps on this repo:
-
installed PHP sudo apt install php php-json php-ctype php-curl php-mbstring php-xml php-zip php-tokenizer php-tokenizer libpcre3 --no-install-recommends
-
installed mongodb as described on this page https://www.joyk.com/dig/detail/1627890111753255
-
installed composer
-
pulled your package from this repo to a folder in /var/www/html/pims
-
copied the .env.dist file to .env. Didn't change anything DATABASE_URL=mongodb://mongodb:27017 - i guess its right
-
executed sudo composer install
-
changed the 000-default.conf in apache2 to say:
DocumentRoot /var/www/html/pims/public
<Directory /var/www/html/pims/public>
-
and i edited a copy of the 000-default.conf configuration file to say
DocumentRoot /var/www/html/pims/public
<Directory "/var/www/html/pims/public">
DirectoryIndex index.php
Allow from all
-
indluced both files into the apache sites-enabled
-
restarted the apache2 server
-
I get this message:
Not Found
The requested URL was not found on this server.
Apache/2.4.41 (Ubuntu) Server at 192.168.1.244 Port 80
could you please help me resolve this