If you’re getting started with Symfony2, you’ll get something running pretty quickly. The AcmeBundle contains some of the basic features you’ll need when writing a Symfony2 app. The basics lie in the MVC paradigm, so there is some model (Doctrine ORM), some view (Twig templates) and some controllers. However, none of that is the real [...]
Monthly Archives: July 2012
Using a .pfx to install an SSL certificate
Got a .pfx file and need to install an SSL certificate with this? Here’s how I did it. You’ll need to extract the signed public certificate (public key) and the private key without passphrase. cd /etc/nginx/ mkdir ssl cd ssl mv /path/to/pfx/file.pfx . chmod 400 file.fpx First extract the public certificate. You might be asked [...]