Merge branch 'master' of gitea.azcona-becker.net:mochapowered/mocha-suv

This commit is contained in:
Michael Becker 2024-11-19 22:55:34 -05:00
commit a52923575d
2 changed files with 18 additions and 1 deletions

@ -1 +1 @@
Subproject commit 0a3e0090e7ca315ae74053e6505e7d2464cc11db
Subproject commit 368d3e576f6be77aa17571da90f056fa2f5e9354

17
mocha-suv/configure vendored Normal file
View File

@ -0,0 +1,17 @@
# mocha-suv post-installation configuration script
# to be run on the SUV virtual machine (if building manually)
ENABLE_SSL=1
if [ $ENABLE_SSL -eq 1 ]; then
# enable SSL
echo "Listen 443" > /etc/apache2/ports.conf
a2enmod ssl
fi
# enable rewrite module
a2enmod rewrite
# restart Apache
systemctl restart apache2