17 lines
311 B
Bash
Executable File
17 lines
311 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
(cd /usr/share/hedera-web && npm install --production)
|
|
|
|
a2enmod rewrite headers
|
|
|
|
if [ -e /usr/share/apache2/apache2-maintscript-helper ]
|
|
then
|
|
. /usr/share/apache2/apache2-maintscript-helper
|
|
apache2_invoke enconf hedera-web.conf
|
|
fi
|
|
|
|
#service php7.3-fpm restart
|
|
#service cron restart
|