Template:ApacheOX7Conf

Revision as of 11:48, 4 July 2012 by WolfgangRosenauer (talk | contribs) (Created page with " Modify the default website settings to display the Open-Xchange GUI $ vim {{{apacheconf}}} <VirtualHost *:80> ServerAdmin webmaster@localhost DocumentRo...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Modify the default website settings to display the Open-Xchange GUI

$ vim {{{apacheconf}}}
<VirtualHost *:80>
       ServerAdmin webmaster@localhost

       DocumentRoot /var/www
       <Directory />
               Options FollowSymLinks
               AllowOverride None
       </Directory>
       <Directory /var/www/>
               Options Indexes FollowSymLinks MultiViews
               AllowOverride None
               Order allow,deny
               allow from all
       </Directory>

       ProxyPass /ox7/api ajp://127.0.0.1:8009/ajax
       # optional parameters: retry=0 connectiontimeout=5 timeout=10

       <Directory /var/www/ox7>
               Options None +SymLinksIfOwnerMatch
               AllowOverride Indexes FileInfo
       </Directory>

       ErrorLog ${APACHE_LOG_DIR}/error.log

       # Possible values include: debug, info, notice, warn, error, crit,
       # alert, emerg.
       LogLevel warn

       CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>