summaryrefslogtreecommitdiffstats
path: root/tests/travis/travis-ci-apache.sh
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2016-02-21 16:00:07 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2016-02-21 16:00:07 +0100
commit7738ee6ad0c273450d6d01379e87b631aca7603b (patch)
tree4bae228747d1475627c92e0be710602c9ce02eac /tests/travis/travis-ci-apache.sh
parentf13839ff6071a208c0a05ecafa71de90dd34fb03 (diff)
remove obsolete travis configs
Diffstat (limited to 'tests/travis/travis-ci-apache.sh')
-rw-r--r--tests/travis/travis-ci-apache.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/travis/travis-ci-apache.sh b/tests/travis/travis-ci-apache.sh
deleted file mode 100644
index 24af96be5..000000000
--- a/tests/travis/travis-ci-apache.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-# set up php under apache
-if [[ $(phpenv version-name) == 'hhvm' ]]; then
- sudo a2enmod rewrite actions fastcgi alias
- sudo cp -f owncloud/apps/news/tests/travis/travis-ci-apache-hhvm.conf /etc/apache2/sites-available/default
- sudo sed -e "s?%TRAVIS_BUILD_DIR%?$(pwd)?g" --in-place /etc/apache2/sites-available/default
- sudo service apache2 restart
- hhvm -m daemon -vServer.Type=fastcgi -vServer.Port=9000 -vServer.FixPathInfo=true
-else
- sudo cp ~/.phpenv/versions/$(phpenv version-name)/etc/php-fpm.conf.default ~/.phpenv/versions/$(phpenv version-name)/etc/php-fpm.conf
- sudo a2enmod rewrite actions fastcgi alias
- echo "cgi.fix_pathinfo = 1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- ~/.phpenv/versions/$(phpenv version-name)/sbin/php-fpm
- sudo cp -f owncloud/apps/news/tests/travis/travis-ci-apache.conf /etc/apache2/sites-available/default
- sudo sed -e "s?%TRAVIS_BUILD_DIR%?$(pwd)?g" --in-place /etc/apache2/sites-available/default
- sudo service apache2 restart
-fi
-
-