Enabled xdebug in the dev environment.

This commit is contained in:
Peter Deltchev 2016-12-24 18:08:33 -08:00
parent 62188eb5e6
commit 45793a2988
2 changed files with 8 additions and 2 deletions

View file

@ -7,7 +7,8 @@ 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/fpm/99-overrides.ini &
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

View file

@ -2,4 +2,9 @@
expose_php = Off
post_max_size = 250M
upload_max_filesize = 200M
upload_max_filesize = 200M
xdebug.remote_enable = 1
xdebug.remote_connect_back = 1
xdebug.remote_port = 9000