summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorBjörn Geiger2011-06-25 16:35:35 +0200
committerBjörn Geiger2011-06-25 16:35:35 +0200
commitb92142fb247cf9e3f090f233354d8fca26be8133 (patch)
tree086bd7af6cad5c9f12004b138d68de5a3d97c31c /docs
parentZend Application hinzugefügt (diff)
downloadpoolctrl-b92142fb247cf9e3f090f233354d8fca26be8133.tar.gz
poolctrl-b92142fb247cf9e3f090f233354d8fca26be8133.tar.xz
poolctrl-b92142fb247cf9e3f090f233354d8fca26be8133.zip
Zend Application hinzugefügt
Diffstat (limited to 'docs')
-rw-r--r--docs/README.txt30
1 files changed, 30 insertions, 0 deletions
diff --git a/docs/README.txt b/docs/README.txt
new file mode 100644
index 0000000..3b455ec
--- /dev/null
+++ b/docs/README.txt
@@ -0,0 +1,30 @@
+README
+======
+
+This directory should be used to place project specfic documentation including
+but not limited to project notes, generated API/phpdoc documentation, or
+manual files generated or hand written. Ideally, this directory would remain
+in your development environment only and should not be deployed with your
+application to it's final production location.
+
+
+Setting Up Your VHOST
+=====================
+
+The following is a sample VHOST you might want to consider for your project.
+
+<VirtualHost *:80>
+ DocumentRoot "/home/bjoerng85/poolctrl/public"
+ ServerName poolctrl.local
+
+ # This should be omitted in the production environment
+ SetEnv APPLICATION_ENV development
+
+ <Directory "/home/bjoerng85/poolctrl/public">
+ Options Indexes MultiViews FollowSymLinks
+ AllowOverride All
+ Order allow,deny
+ Allow from all
+ </Directory>
+
+</VirtualHost>