Skip to content

Instantly share code, notes, and snippets.

@michael-bouvy
michael-bouvy / self-signed-certificate-with-custom-ca.md
Created September 6, 2018 13:48 — forked from fntlnz/self-signed-certificate-with-custom-ca.md
Self Signed Certificate with Custom Root CA

Create Root CA (Done once)

Create Root Key

Attention: this is the key used to sign the certificate requests, anyone holding this can sign certificates on your behalf. So keep it in a safe place!

openssl genrsa -des3 -out rootCA.key 4096
@michael-bouvy
michael-bouvy / sf2_form.php
Created April 24, 2012 11:45 — forked from nclavaud/sf2_form.php
Symfony2 standalone Form component example
<?php
/**
* @author Nicolas Clavaud <nclavaud@gmail.com>
* http://n.clavaud.free.fr/blog/index.php?article31/symfony2-standalone-form-component-tutorial
*/
namespace Me\MyApp;
use Symfony\Component\ClassLoader\UniversalClassLoader;