Created
May 5, 2017 00:06
-
-
Save matthewoden/b9d19660629eaa74a04697aa4d68f9c4 to your computer and use it in GitHub Desktop.
.ebextenstions configuration files for a single instance docker deploy environment (cert files, auto upgrade from http to https, etc)
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
Resources: | |
sslSecurityGroupIngress: | |
Type: AWS::EC2::SecurityGroupIngress | |
Properties: | |
GroupId: {"Fn::GetAtt" : ["AWSEBSecurityGroup", "GroupId"]} | |
IpProtocol: tcp | |
ToPort: 443 | |
FromPort: 443 | |
CidrIp: 0.0.0.0/0 |
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
files: | |
/etc/nginx/conf.d/https.conf: | |
mode: "000644" | |
owner: root | |
group: root | |
content: | | |
# HTTPS Server | |
server { | |
listen 443; | |
server_name localhost; | |
ssl on; | |
ssl_certificate /etc/pki/tls/certs/server.crt; | |
ssl_certificate_key /etc/pki/tls/certs/server.key; | |
ssl_session_timeout 5m; | |
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; | |
ssl_ciphers "EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH"; | |
ssl_prefer_server_ciphers on; | |
location / { | |
proxy_pass http://docker; | |
proxy_http_version 1.1; | |
proxy_set_header Connection ""; | |
proxy_set_header Host $host; | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
} | |
} | |
/etc/nginx/conf.d/00_elastic_beanstalk_proxy.conf: | |
mode: "000755" | |
owner: root | |
group: root | |
content: | | |
server { | |
listen 80; | |
gzip on; | |
if ($http_x_forwarded_proto != 'https') { | |
rewrite ^(.*) https://$host$1 redirect; | |
} | |
location / { | |
proxy_pass http://docker; | |
proxy_http_version 1.1; | |
proxy_set_header Connection $connection_upgrade; | |
proxy_set_header Upgrade $http_upgrade; | |
proxy_set_header Host $host; | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
} | |
} | |
/etc/pki/tls/certs/server.crt: | |
mode: "000400" | |
owner: root | |
group: root | |
content: | | |
-----BEGIN CERTIFICATE----- | |
YOUR_CERT_HERE_WITH_PROPER_INDENTATION | |
-----END CERTIFICATE----- | |
/etc/pki/tls/certs/server.key: | |
mode: "000400" | |
owner: root | |
group: root | |
content: | | |
-----BEGIN RSA PRIVATE KEY----- | |
YOUR_KEY_HERE_WITH_PROPER_INDENTATION | |
-----END RSA PRIVATE KEY----- | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment