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 ubuntu 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 at least on GHA'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 # default apache siteaccess found in GHA Ubuntu. We remove it just in case
27 if [ -f /etc/apache2/sites-available/default-ssl.conf ]; then
28     rm /etc/apache2/sites-available/default-ssl.conf
29 fi
30
31 if [ -n "${TRAVIS}" -o -n "${GITHUB_ACTIONS}" ]; then
32     echo "export TESTS_ROOT_DIR=$(pwd)" >> /etc/apache2/envvars
33 else
34     echo "export TESTS_ROOT_DIR=/var/www/html" >> /etc/apache2/envvars
35 fi
36 echo "export HTTPSERVER=localhost" >> /etc/apache2/envvars
37
38 service apache2 restart