13 lines
241 B
Plaintext
13 lines
241 B
Plaintext
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
service php7.0-fpm restart
|
||
|
|
||
|
# Enables Apache configuration
|
||
|
|
||
|
if [ -e /usr/share/apache2/apache2-maintscript-helper ]
|
||
|
then
|
||
|
. /usr/share/apache2/apache2-maintscript-helper
|
||
|
apache2_invoke enconf vn-autoconfig.conf
|
||
|
fi
|