A page in your DokuWiki was added or changed. Here are the details:

Date        : 2016/11/24 11:44
Browser     : Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:50.0) Gecko/20100101 
Firefox/50.0
IP-Address  : 193.248.50.71
Hostname    : LStLambert-656-1-262-71.w193-248.abo.wanadoo.fr
Old Revision: ---
New Revision: 
http://ltb-project.org/wiki/documentation/white-pages/latest/config_apache
Edit Summary: created
User        : coudot

====== Apache configuration ======

<note tip>Debian and RPM packages already include Apache configuration</note>

Here is an example of Apache configuration using a virtual host:

<file apache>
<VirtualHost *:80>
    ServerName wp.example.com

    DocumentRoot /usr/share/white-pages/htdocs
    DirectoryIndex index.php

    <Directory /usr/share/white-pages/htdocs>
        AllowOverride None
        <IfVersion >= 2.3>
            Require all granted
        </IfVersion>
        <IfVersion < 2.3>
            Order Deny,Allow
            Allow from all
        </IfVersion>
    </Directory>

    LogLevel warn
    ErrorLog /var/log/apache2/wp_error.log
    CustomLog /var/log/apache2/wp_access.log combined
</VirtualHost>
</file>

You have to change the server name to fit your own domain configuration.

This file should then be included in Apache configuration.

<note tip>
With Debian package, just enable the site like this:
<code>
# a2ensite white-pages
</code>
</note>


You can also configure White Pages in the default virtual host:
<file apache>
Alias /wp /usr/local/white-pages/htdocs

<Directory /usr/local/white-pages/htdocs>
        DirectoryIndex index.php
        AllowOverride None
        <IfVersion >= 2.3>
            Require all granted
        </IfVersion>
        <IfVersion < 2.3>
            Order Deny,Allow
            Allow from all
        </IfVersion>
</Directory>
</file>

Check you configuration and reload Apache:
<code>
# apachectl configtest
# apachectl reload
</code>


-- 
This mail was generated by DokuWiki at
http://ltb-project.org/wiki/
_______________________________________________
ltb-changes mailing list
[email protected]
http://lists.ltb-project.org/listinfo/ltb-changes

Reply via email to