# Apache Settings

http://etherbox.local/etc/apache2/sites-available/default

## System root as DOC root

<Directory />
    Options FollowSymLinks
    AllowOverride None
</Directory>
<Directory />
    Options Indexes FollowSymLinks MultiViews Includes
    AllowOverride All
    Order allow,deny
    allow from all
</Directory>

## ETHERPAD PROXY (to allow "direct" URL without port)

  Redirect /pad /pad/
  LoadModule  proxy_module         /usr/lib/apache2/modules/mod_proxy.so
  LoadModule  proxy_http_module    /usr/lib/apache2/modules/mod_proxy_http.so
  LoadModule  headers_module       /usr/lib/apache2/modules/mod_headers.so
  LoadModule  deflate_module       /usr/lib/apache2/modules/mod_deflate.so
  ProxyVia On
  ProxyRequests Off
  ProxyPass /pad/ http://localhost:9001/
  ProxyPassReverse /pad/ http://localhost:9001/
  ProxyPreserveHost on
  <Proxy *>
    Options FollowSymLinks MultiViews
    AllowOverride All
    Order allow,deny
    allow from all
  </Proxy>

## Set the default character set to UTF-8

AddDefaultCharset UTF-8

## CRONTAB

PATH=/home/pi/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/games:/usr/games
# m h  dom mon dow   command
*/5 * * * * /home/pi/etherdump.sh > /home/pi/cron.log 2>&1

Greetings from the big room.
On the machineresearch network!