Techy Things

Create an intermediate CA 0

Create an intermediate CA

First step is required. If you don't I wrote the instructions to setup a root CA. 1. Create folders (you are free to choose where) and add basic files: cd /etc/pki/tls/ mkdir intermediate-ca cd intermediate-ca...

How to install a CA signed SSL certificate 0

How to install a CA signed SSL certificate

Apache (...) SSLEngine on SSLCertificateFile /path/to/website.crt SSLCertificateKeyFile /path/to/private.key SSLCACertificateFile /path/to/root_bundle.crt What is the use of you might say ? It is primary the same as SSLCertificateChainFile but it also permits the use of the...

Create your own CA certificate authority to sign SSL 0

Create your own CA certificate authority to sign SSL

mkdir -p root-ca/{conf,private,public} chmod 600 root-ca/private/ cd root-ca/ mkdir signed-keys echo "01" > conf/serial touch conf/index Create a new file in root-ca/conf/openssl.cnf with the following content [ req ]default_bits            = 2048 default_keyfile         = ./private/root.pem...

Restoring wordpress site from backup 0

Restoring wordpress site from backup

In theory should be straightforward: mySQL database + files restore. In practice not so easy. Here are some trouble you may jump into Website domain changes It happens that before restoring the backup you...

Call to undefined function curl_init() 0

Call to undefined function curl_init()

You need to uncomment extension=php_curl.dll But it might not work! If it doesn't it just means you are editing the wrong php.ini or that no php.ini is used. Verify what is the status by...