wip github actions CI
[plcapi.git] / tests / ci / setup / setup_apache.sh
1 #!/bin/sh
2
3 # Install and configure apache2
4 # Has to be run as admin
5 # @todo make this work across all apache versions (precise to focal)
6
7 set -e
8
9 SCRIPT_DIR="$(dirname -- "$(readlink -f "$0")")"
10
11 DEBIAN_FRONTEND=noninteractive apt-get install -y apache2
12
13 # set up Apache for php-fpm
14 # @see https://github.com/travis-ci/travis-ci.github.com/blob/master/docs/user/languages/php.md#apache--php
15
16 a2enmod rewrite proxy_fcgi setenvif ssl
17
18 # in case mod-php was enabled (this is the case on at least github's ubuntu with php 5.x and shivammathur/setup-php)
19 # @todo silence errors in a smarter way
20 rm /etc/apache2/mods-enabled/php* || true
21
22 # configure apache virtual hosts
23
24 cp -f "$SCRIPT_DIR/../config/apache_vhost" /etc/apache2/sites-available/000-default.conf
25
26 if [ -n "${TRAVIS}" -o -n "${GITHUB_ACTIONS}" ]; then
27     echo "export TESTS_ROOT_DIR=$(pwd)" >> /etc/apache2/envvars
28 else
29     echo "export TESTS_ROOT_DIR=/var/www/html" >> /etc/apache2/envvars
30 fi
31 echo "export HTTPSERVER=localhost" >> /etc/apache2/envvars
32
33 service apache2 restart