aboutsummaryrefslogtreecommitdiffstats
path: root/extras/fap/httpd/README.md
diff options
context:
space:
mode:
authorKristian Lyngstol <kristian@bohemians.org>2016-04-12 18:35:37 +0200
committerKristian Lyngstol <kristian@bohemians.org>2016-04-12 18:35:37 +0200
commit5b42f93b5b0d33dc5c790991431b6282a5671bc9 (patch)
treee5c1868c9450cc1c964dbc8693be5cfff1dc0bca /extras/fap/httpd/README.md
parentc3d8b2fd890d7e486d8643957268c03df61657db (diff)
Some housekeeping/reorganizing
moving things that need work into extras/
Diffstat (limited to 'extras/fap/httpd/README.md')
-rwxr-xr-xextras/fap/httpd/README.md26
1 files changed, 26 insertions, 0 deletions
diff --git a/extras/fap/httpd/README.md b/extras/fap/httpd/README.md
new file mode 100755
index 0000000..73c5634
--- /dev/null
+++ b/extras/fap/httpd/README.md
@@ -0,0 +1,26 @@
+# HTTPD
+
+Well, not working out quite as I've hoped (at least for now).
+
+Resorted to Apache2, PHP and Postgres for the HTTP. Apache starts at boot, so no action required to get the stack up and after installation.
+
+```
+j@lappie:~/git/tgmanage$ cat /etc/apache2/sites-enabled/000-default.conf
+<VirtualHost *:80>
+ ServerAdmin webmaster@localhost
+
+ DocumentRoot /home/j/git/tgmanage/fap/httpd/httpd_root/
+
+ <Directory /home/j/git/tgmanage/fap/httpd/httpd_root>
+ Options Indexes FollowSymLinks MultiViews
+ AllowOverride All
+ Order allow,deny
+ allow from all
+ </Directory>
+
+ ErrorLog ${APACHE_LOG_DIR}/error.log
+ LogLevel warn
+
+ CustomLog ${APACHE_LOG_DIR}/access.log combined
+</VirtualHost>
+```