This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:: 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 :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:: 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 ::::::::::::::::::::::::::::::::::::: |