diff options
author | Spike <avlampson+git@gmail.com> | 2019-04-07 22:03:31 +0100 |
---|---|---|
committer | Spike <avlampson+git@gmail.com> | 2019-04-07 22:03:31 +0100 |
commit | bb81085619769aca861ab5d5bbff86f71c9435d2 (patch) | |
tree | 80b45de34d9f0647c10e6d6fae5b408c21c190c5 /files | |
download | fundapp_demo-bb81085619769aca861ab5d5bbff86f71c9435d2.zip fundapp_demo-bb81085619769aca861ab5d5bbff86f71c9435d2.tar.gz fundapp_demo-bb81085619769aca861ab5d5bbff86f71c9435d2.tar.bz2 |
Diffstat (limited to 'files')
-rw-r--r-- | files/app_data.tpl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/files/app_data.tpl b/files/app_data.tpl new file mode 100644 index 0000000..419eff6 --- /dev/null +++ b/files/app_data.tpl @@ -0,0 +1,11 @@ +#!/bin/bash + +# Update OS +apt-get update +DEBIAN_FRONTEND=noninteractive apt-get -y upgrade + +# Install nginx +apt-get -y install nginx + +# Start nginx. This will act the part of our healthcheck +service nginx start |