grant all on database.* to 'wl'@'10.10.12.111' identified by 'password';
revoke all on database.* from 'wl'@'10.10.12.111';
| $ openssl pkcs12 -nodes -in /path/to/my/cert.p12 -out /pathto/my/cert.pem |
creating a zip from a git archive
git archive HEAD --format=zip > archive.zip
Simple example of passing a short domain name over to a long one. Useful when url shortening
<VirtualHost *:80>
ServerName short.me
ServerAlias www.short.me
ProxyPass / http://myverylongdomainname.com/
</VirtualHost>