summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorSimon2011-01-17 13:18:35 +0100
committerSimon2011-01-17 13:18:35 +0100
commit875dbf26df46068d505070807ae8eb787ebc79f4 (patch)
treedf93776fb62b4cfe8eca71de581d5e17eec2b7ce /docs
parentzend lokal einrichten (diff)
downloadpbs2-875dbf26df46068d505070807ae8eb787ebc79f4.tar.gz
pbs2-875dbf26df46068d505070807ae8eb787ebc79f4.tar.xz
pbs2-875dbf26df46068d505070807ae8eb787ebc79f4.zip
Initialize Zend
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..1f144e6
--- /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/sf34/pbs2/public"
+ ServerName pbs2.local
+
+ # This should be omitted in the production environment
+ SetEnv APPLICATION_ENV development
+
+ <Directory "/home/sf34/pbs2/public">
+ Options Indexes MultiViews FollowSymLinks
+ AllowOverride All
+ Order allow,deny
+ Allow from all
+ </Directory>
+
+</VirtualHost>