Skip to content

Instantly share code, notes, and snippets.

@Gigabyte1979
Gigabyte1979 / AWS-SSL-Certificates
Created September 8, 2015 06:54
Configure AWS SSL-certificates
:: Step 1 - Create CSR-file ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
openssl req -nodes -newkey rsa:2048 -keyout any.domainname.com.key -out any.domainname.com.csr
:: Step 2 - Prepare Private Key for configuration ::::::::::::::::::::::::::::::::::::::::::::::::
openssl rsa -in any.domainname.com.key -text
:: Step 3 - Print CRT-file’s content to screen :::::::::::::::::::::::::::::::::::::::::::::::::::
openssl x509 -inform PEM -in any.domainname.com.crt
:: Step 4 - AWS ELB Configuration ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
@Gigabyte1979
Gigabyte1979 / Install or Update Yii2
Last active October 23, 2015 07:34
Composer usage for Install/Update Yii2-framework
:: check/install composer updates :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
composer self-update
:: check/install updates for composer packages ::::::::::::::::::::::::::::::::::::::::::::::::::::
composer update
:: install additional plugin for composer packages ::::::::::::::::::::::::::::::::::::::::::::::::
composer global require "fxp/composer-asset-plugin:~1.0.3"
:: install Yii2-framework Basic Edition with name ProjectName :::::::::::::::::::::::::::::::::::::