From 0d92ff5fd34d79b54c30c38ac41bc600acf7b7c4 Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Sun, 27 Oct 2013 15:14:18 +0100 Subject: o Dropping the CSV file for using a native app config file instead. o Using apache as an example app. o Adding appstore-add-app as a utility to register appliations. --- test/data/my-webapp/root/bin/my-app | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 test/data/my-webapp/root/bin/my-app (limited to 'test/data/my-webapp/root/bin/my-app') diff --git a/test/data/my-webapp/root/bin/my-app b/test/data/my-webapp/root/bin/my-app new file mode 100755 index 0000000..e3fb305 --- /dev/null +++ b/test/data/my-webapp/root/bin/my-app @@ -0,0 +1,20 @@ +#!/bin/bash + +export BASEDIR=`pwd` + +exec 1>/tmp/stdout +exec 2>/tmp/stderr + +mkdir -p "$BASEDIR/locks" +mkdir -p "$BASEDIR/logs" + +set -x +export APACHE_LOCK_DIR="$BASEDIR/locks" +export APACHE_PID_FILE="$(cd $BASEDIR/../../../.app && pwd)/pid" +export APACHE_LOG_DIR="$BASEDIR/logs" + +export MODULES=/usr/lib/apache2/modules + +export PORT=$(app conf get myapp.port) + +exec /usr/sbin/apache2 -DPORT="$PORT" -f "$BASEDIR/conf/httpd.conf" -- cgit v1.2.3