summaryrefslogtreecommitdiff
path: root/test/data/my-webapp/root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'test/data/my-webapp/root/bin')
-rwxr-xr-xtest/data/my-webapp/root/bin/app.js39
-rwxr-xr-xtest/data/my-webapp/root/bin/my-app20
2 files changed, 20 insertions, 39 deletions
diff --git a/test/data/my-webapp/root/bin/app.js b/test/data/my-webapp/root/bin/app.js
deleted file mode 100755
index 992a701..0000000
--- a/test/data/my-webapp/root/bin/app.js
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/usr/bin/env nodejs
-
-var http = require("http"),
- url = require("url"),
- path = require("path"),
- fs = require("fs")
- port = process.env.PORT || 8888;
-
-http.createServer(function(request, response) {
-
- var uri = url.parse(request.url).pathname
- , filename = path.join(process.cwd(), uri);
-
- path.exists(filename, function(exists) {
- if(!exists) {
- response.writeHead(404, {"Content-Type": "text/plain"});
- response.write("404 Not Found\n");
- response.end();
- return;
- }
-
- if (fs.statSync(filename).isDirectory()) filename += '/index.html';
-
- fs.readFile(filename, "binary", function(err, file) {
- if(err) {
- response.writeHead(500, {"Content-Type": "text/plain"});
- response.write(err + "\n");
- response.end();
- return;
- }
-
- response.writeHead(200);
- response.write(file, "binary");
- response.end();
- });
- });
-}).listen(parseInt(port, 10));
-
-console.log("Static file server running at\n => http://localhost:" + port + "/\nCTRL + C to shutdown");
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"