summaryrefslogtreecommitdiffstats
path: root/files
diff options
context:
space:
mode:
Diffstat (limited to 'files')
-rw-r--r--files/app_data.tpl11
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