icingaweb2/doc
Matthias Jentsch 61fad6b89c Add documentation for components
Add a documentation about how to create and load documents

refs #4456
2013-08-21 09:40:32 +02:00
..
module
res
test
CONFIG.md
LICENSEHEAD
LIVESTATUS_COLUMNS
ORACLE
README.txt
apidoc_creation.md
authentication.md Fix mistakes in the documentation files 2013-08-14 16:22:58 +02:00
command.md
components.md Add documentation for components 2013-08-21 09:40:32 +02:00
dashboard.md
form.md
installation.md
phpdoc.xml
preferences.md Change the StoreFactory to work with the DbAdapterFactory and fix code styling 2013-08-15 14:16:34 +02:00
resources.md Fix spelling mistake in resources.md 2013-08-14 16:27:03 +02:00
testing.md
widgets.md Widgets: Fix example code in documention not following our Coding Standards 2013-08-16 15:08:29 +02:00

README.txt

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 "/var/www/net-test-icinga-vm1.adm.netways.de/public"
   ServerName net-test-icinga-vm1.adm.netways.de.local

   # This should be omitted in the production environment
   SetEnv APPLICATION_ENV development
    
   <Directory "/var/www/net-test-icinga-vm1.adm.netways.de/public">
       Options Indexes MultiViews FollowSymLinks
       AllowOverride All
       Order allow,deny
       Allow from all
   </Directory>
    
</VirtualHost>