diff --git a/.travis/deploy_script.sh b/.travis/deploy_script.sh index d29f1bfb..bc3c2011 100755 --- a/.travis/deploy_script.sh +++ b/.travis/deploy_script.sh @@ -53,7 +53,7 @@ if [ "$TRAVIS" = "true" ]; then #git archive --format=tar.gz --prefix=phpvms/ --output=test.tar.gz HEAD echo "running rsync" - rsync -ahP --delete-after /tmp/$TAR_NAME downloads@phpvms.net:/var/www/downloads/ + rsync -ahP --delete-after /tmp/$TAR_NAME downloads@phpvms.net:/var/www/phpvms/downloads/ curl -X POST --data "{\"content\": \"A new build is available at http://phpvms.net/downloads/$TAR_NAME ($VERSION)\"}" -H "Content-Type: application/json" $DISCORD_WEBHOOK_URL diff --git a/.travis/my.cnf b/.travis/my.cnf new file mode 100644 index 00000000..ca3f29de --- /dev/null +++ b/.travis/my.cnf @@ -0,0 +1,32 @@ +[client] +user=root +password=root +host=localhost + +[mysqld] +sql_mode="NO_ENGINE_SUBSTITUTION" +innodb_file_per_table = OFF +show_compatibility_56=ON +open_files_limit=999999 +log-error=/Users/nshahzad/.valet/Log/mysql.log +local_infile=ON +secure_file_priv="" +max_allowed_packet=1073741824 +max_connections = 100000 +key_buffer_size=1024M +innodb_buffer_pool_size=1024M +query_cache_size=67108864 +query_cache_type=1 +query_cache_limit=4194304 +table_open_cache=4096 +innodb_buffer_pool_instances=24 +myisam_sort_buffer_size=1024M +innodb_sort_buffer_size=1024M +sort_buffer_size=1024M +innodb_flush_log_at_trx_commit=0 +innodb_log_file_size=25M +interactive_timeout=3600 +max_connect_errors=1000000 +thread_cache_size=1024 +[mysqld_safe] +open_files_limit = 999999