This commit is contained in:
William Mantly 2021-01-25 19:20:53 -05:00
parent bca25bc84d
commit 701d1aa607
Signed by: wmantly
GPG Key ID: 186A8370EFF937CA
3 changed files with 7 additions and 0 deletions

View File

@ -9,7 +9,9 @@
</IfModule>
DocumentRoot "{{workingPath}}/frontend"
<Directory "{{workingPath}}/frontend">
Require all granted
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]

3
scripts/installnode.sh Normal file
View File

@ -0,0 +1,3 @@
#!/bin/bash
apt install node npm

View File

@ -9,3 +9,5 @@ apache_vhost="$(cat ops/apache2/vhost.conf)"
echo "$apache_vhost" | mo > /etc/apache2/sites-enabled/000-default.conf
service apache2 restart
source ../installnode.sh