Skip to content

Commit 58cb8ae

Browse files
committed
no message
1 parent 02bc7d2 commit 58cb8ae

13 files changed

Lines changed: 464 additions & 43 deletions

.idea/.name

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/encodings.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/nginx-proxy-r53.iml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/scopes/scope_settings.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workspace.xml

Lines changed: 379 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,14 @@ MAINTAINER Jason Wilder jwilder@litl.com
44
# Install wget and install/updates certificates
55
RUN apt-get update \
66
&& apt-get install -y -q --no-install-recommends \
7+
python-pip \
78
ca-certificates \
89
wget \
910
&& apt-get clean \
1011
&& rm -r /var/lib/apt/lists/*
1112

13+
RUN pip install awscli
14+
1215
# Configure Nginx and apply fix for very long server names
1316
RUN echo "daemon off;" >> /etc/nginx/nginx.conf \
1417
&& sed -i 's/^http {/&\n server_names_hash_bucket_size 128;/g' /etc/nginx/nginx.conf

Procfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
nginx: nginx
22
dockergen: docker-gen -watch -only-exposed -notify "nginx -s reload" /app/nginx.tmpl /etc/nginx/conf.d/default.conf
3+
dockergenr3: docker-gen -watch -only-exposed -notify "sh /app/update-route53.sh" /app/route53.json.tmpl /etc/route53.json

0 commit comments

Comments
 (0)