Skip to content

Instantly share code, notes, and snippets.

View ajcobo's full-sized avatar

Alfredo Cobo ajcobo

  • DVA Capital
  • Santiago
View GitHub Profile
import Ember from 'ember';
export default Ember.Component.extend({
mathjax: Ember.inject.service(),
tagName: 'span',
didRender() {
this.get('element').innerHTML = this.get('content') || '';
if(!Ember.isBlank(this.get('content'))) {
@ajcobo
ajcobo / AWS_Single_LetsEncrypt.yaml
Last active August 24, 2018 08:15 — forked from tony-gutierrez/AWS_Single_LetsEncrypt.yaml
AWS Elastic Beanstalk .ebextensions config for single instance free SSL using letsencrypt certbot and nginx. http://bluefletch.com/blog/domain-agnostic-letsencrypt-ssl-config-for-elastic-beanstalk-single-instances/
# Dont forget to set the env variable "certdomain", and either fill in your email below or use an env variable for that too.
# Also note that this config is using the LetsEncrypt staging server, remove the flag when ready!
Resources:
sslSecurityGroupIngress:
Type: AWS::EC2::SecurityGroupIngress
Properties:
GroupId: {"Fn::GetAtt" : ["AWSEBSecurityGroup", "GroupId"]}
IpProtocol: tcp
ToPort: 443
FromPort: 443