aboutsummaryrefslogtreecommitdiffstats
path: root/fap/httpd/README.md
diff options
context:
space:
mode:
authorroot <root@copernicus>2015-04-05 02:01:54 +0200
committerroot <root@copernicus>2015-04-05 02:01:54 +0200
commitc2e2960899fc2a52b8bf03f842bebf81c8b5404d (patch)
tree57e2db72a0e467e8c75f27adc4fffe3974b5fe57 /fap/httpd/README.md
parenta1addd24838ecb4eb310620ce8bfa3495ed7613e (diff)
Cleaned passwords, made it ready for further development before TG16
Diffstat (limited to 'fap/httpd/README.md')
-rwxr-xr-xfap/httpd/README.md26
1 files changed, 26 insertions, 0 deletions
diff --git a/fap/httpd/README.md b/fap/httpd/README.md
new file mode 100755
index 0000000..73c5634
--- /dev/null
+++ b/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>
+```