I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
| var AWS = require('aws-sdk'); | |
| exports.handler = function(event, context) { | |
| var ec2 = new AWS.EC2({region: 'us-east-1'}); | |
| ec2.startInstances({InstanceIds : ['i-0114833f8ffc9151c'] },function (err, data) { | |
| if (err) console.log(err, err.stack); | |
| else console.log(data); | |
| context.done(err,data); | |
| }); | |
| }; |
| #!/bin/bash | |
| yum install -y aws-cli | |
| cd /home/ec2-user/ | |
| aws s3 cp 's3://aws-codedeploy-us-east-1/latest/codedeploy-agent.noarch.rpm' . --region us-east-1 | |
| yum -y install codedeploy-agent.noarch.rpm |
| // Mixpanel Cheatsheet | |
| // This requires the mixpanel javascript library to be embedded on your site | |
| // https://mixpanel.com/help/reference/javascript-full-api-reference | |
| // 1. API Methods. | |
| mixpanel.init('new token', { your: 'config' }, 'library_name'); // initialize a new instance of the Mixpanel tracking object | |
| mixpanel.push(['register', { a: 'b' }]); // push() keeps the standard async-array-push behavior around after the lib is loaded. This is only useful for external integrations that do not wish to rely on our convenience methods (created in the snippet). |
| Project $PROJECT_NAME build #$BUILD_NUMBER status: $BUILD_STATUS, at SVN revision $SVN_REVISION. | |
| Details at $BUILD_URL | |
| $FAILED_TESTS | |
| #!/bin/bash | |
| JQPATH=$(which jq) | |
| if [ "x$JQPATH" == "x" ]; then | |
| echo "Couldn't find jq executable." 1>&2 | |
| exit 2 | |
| fi | |
| set -eu | |
| shopt -s nullglob |
| <VirtualHost *:80> | |
| ServerName zf2-tutorial.localhost | |
| DocumentRoot /var/www/public/zf2-tutorial/public | |
| SetEnv APPLICATION_ENV "development" | |
| <Directory /var/www/public/zf2-tutorial/public> | |
| DirectoryIndex index.php | |
| AllowOverride All | |
| Order allow,deny | |
| Allow from all | |
| </Directory> |
| return array( | |
| 'navigation' => array( | |
| 'default' => array( | |
| array( | |
| 'label' => 'Home', | |
| 'route' => 'home', // route name | |
| 'icon' => 'glyphicon glyphicon-home', | |
| ), | |
| array( | |
| 'label' => 'Analytics', |