Skip to content

Instantly share code, notes, and snippets.

@ellipsonic
ellipsonic / Magento mysql Yaml
Last active August 29, 2015 14:25
Yaml file to bring up mysql instance on ubuntu server
# MyMysqlDB
# New mysql profile for magento
# Globals
globals:
-
name: mysql_port
value: '3306'
-
name: username
@ellipsonic
ellipsonic / Magekart DB server
Last active August 29, 2015 14:24
Magekart - DB server
#!/bin/bash
#Instructions to use this script
#
#chmod +x SCRIPTNAME.sh
#
#sudo ./SCRIPTNAME.sh
echo "###################################################################################"
echo "Please be Patient: Installation will start now.......and it will take some time :)"
@ellipsonic
ellipsonic / Magekart app server
Last active August 29, 2015 14:24
Magekart - app server
#!/bin/bash
#Instructions to use this script
#
#chmod +x SCRIPTNAME.sh
#
#sudo ./SCRIPTNAME.sh
echo "###################################################################################"
echo "Please be Patient: Installation will start now.......and it will take some time :)"
#!/bin/bash
#Instructions to use this script
#
#chmod +x SCRIPTNAME.sh
#
#sudo ./SCRIPTNAME.sh
echo "###################################################################################"
echo "Please be Patient: Installation will start now.......and it will take some time :)"
@ellipsonic
ellipsonic / HTML shell
Last active August 29, 2015 14:23
Apache with sample free HTML template shell
#!/bin/bash
php_config_file="/etc/php5/apache2/php.ini"
xdebug_config_file="/etc/php5/mods-available/xdebug.ini"
mysql_config_file="/etc/mysql/my.cnf"
# Update the server
apt-get update
apt-get -y upgrade
@ellipsonic
ellipsonic / Base apache shell
Last active August 29, 2015 14:23
Base apache shell
#!/bin/bash
php_config_file="/etc/php5/apache2/php.ini"
xdebug_config_file="/etc/php5/mods-available/xdebug.ini"
mysql_config_file="/etc/mysql/my.cnf"
# Update the server
apt-get update
apt-get -y upgrade