mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 13:07:59 +01:00
22 lines
781 B
Bash
Executable file
22 lines
781 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
echo "Updating config files and restarting services..."
|
|
echo
|
|
|
|
mkdir -p /vagrant/storage/app/datastore
|
|
|
|
sudo cp /vagrant/vagrant/pony.fm.nginx.config /etc/nginx/nginx.conf &
|
|
sudo cp /vagrant/vagrant/pony.fm.nginx.site.config /etc/nginx/sites-enabled/pony.fm &
|
|
sudo cp /vagrant/vagrant/php-overrides.ini /etc/php/7.0/cli/conf.d/99-overrides.ini &
|
|
sudo cp /vagrant/vagrant/php-overrides.ini /etc/php/7.0/fpm/conf.d/99-overrides.ini &
|
|
sudo cp /vagrant/vagrant/pony.fm.redis.config /etc/redis/redis.conf &
|
|
sudo cp /vagrant/vagrant/pony.fm.supervisor.config /etc/supervisor/conf.d/pony.fm.conf &
|
|
wait
|
|
|
|
sudo service supervisor start
|
|
|
|
sudo supervisorctl update &
|
|
sudo service elasticsearch restart &
|
|
sudo service nginx restart &
|
|
sudo service php7.0-fpm restart &
|
|
wait
|