|
|
|
If install is a fresh one run composer install from root after cloning repo
|
|
|
|
Apache requires sccess to several storage folders change ownership with
|
|
|
|
<pre>chown -R apache:apache ./* </pre>
|
|
|
|
Copy .env.example to .env and add appropiate items
|
|
|
|
generate key for laravel
|
|
|
|
<pre>php artisan key:generate</pre>
|
|
|
|
generate cache
|
|
|
|
<pre>php artisan config:cache</pre>
|
|
|
|
generate storage links
|
|
|
|
<pre>php artisan storage:link</pre>
|
|
|
|
|
|
|
|
The following mount points are required by the server and then used by apps <br>
|
|
|
|
\10.10.1.129\VoIP_Recordings used in storage/app/recordings -- used to retrieve recordings<br>
|
|
|
|
<pre>ln -s /mnt/faxes ./storage/app/</pre>
|
|
|
|
\10.10.1.6\var\spool\asterisk\faxes used in storage/app/faxes -- used to store and send faxes<br>
|
|
|
|
<pre>ln -s /mnt/faxes ./storage/app/</pre>
|
|
|
|
|