mirror of
https://github.com/retailcrm/prestashop-module.git
synced 2025-03-03 19:53:19 +03:00
20 lines
473 B
Bash
Executable File
20 lines
473 B
Bash
Executable File
#!/bin/bash
|
|
|
|
PRESTASHOP_DIR=$TRAVIS_BUILD_DIR/../PrestaShop
|
|
|
|
cd $PRESTASHOP_DIR
|
|
|
|
bash travis-scripts/setup-php-fpm.sh
|
|
|
|
echo "* Preparing Apache ...";
|
|
|
|
sudo a2enmod rewrite actions fastcgi alias
|
|
|
|
# Use default config
|
|
sudo cp -f tests/travis-ci-apache-vhost /etc/apache2/sites-available/000-default.conf
|
|
sudo sed -e "s?%PRESTASHOP_DIR%?$(pwd)?g" --in-place /etc/apache2/sites-available/000-default.conf
|
|
sudo chmod 777 -R $HOME
|
|
|
|
# Starting Apache
|
|
sudo service apache2 restart
|