#
# (Apache) .htaccess file one can use for baseline (if even needed).
# Don't count your security on this, this may just provide some convenience...
#
# The directives below requires AllowOverride Fileinfo in apache httpd.conf
#DefaultType text/plain
AddType text/css .css
AddType text/plain .sh .rst
AddType text/html .html .htm
AddCharset UTF-8 .html .sh .rst
#AddHandler cgi-script cgi
# Options directive requires AllowOverride Options in apache httpd.conf
#Options +ExecCGI
# The directives below requires AllowOverride Limit in apache httpd.conf
# If there is secrecy in .htaccess this may help hiding it.
#
#order allow,deny
#deny from all
#
# If there is secrecy in borewiki-admin.sh this may help hiding it.
#
#order allow,deny
#deny from all
#
# It is recommended that index.html exists in directory where
# BoreWiki.cgi resides so that none of the index stuff below
# is needed (It automatically appears when BoreWiki.cgi is
# executed without any page path given and that page is saved).
# The directives below requires AllowOverride Indexes in apache httpd.conf
#DirectoryIndex index.html
#IndexIgnore *.htm *.css
# Either of these may also be used.
#Options -Indexes # AllowOverride Options...
#IndexIgnore *
#EOF