stunnel for mysql – server and client
We needed to set up an stunnel to the mysql server ( Read the rest of this entry »mysql.example.com),
so that the client (client.example.com) and the server can communicate over an encrypted tunnel.
We needed to set up an stunnel to the mysql server ( Read the rest of this entry »mysql.example.com),
so that the client (client.example.com) and the server can communicate over an encrypted tunnel.
I had to rename many .phtml files, so that their extension will change to .php. This does the trick:
for i in *.phtml; do mv $i ${i%.phtml}.php; done