This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <VirtualHost *:80> | |
| ServerAdmin me@sugeng.me | |
| ServerName sugeng.me | |
| ServerAlias www.sugeng.me | |
| ProxyRequests off | |
| <Proxy *> | |
| Order deny,allow | |
| Allow from all |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| MySQLUSER="homestead" # USERNAME | |
| MySQLPASS="secret" # PASSWORD | |
| MySQLHOST="localhost" # HOSTNAME | |
| # Linux executetable path.. | |
| MYSQL="$(which mysql)" | |
| MYSQLDUMP="$(which mysqldump)" | |
| GZIP="$(which gzip)" |