
# URLS:
_ADMIN="dbadmin"
_CGI_BASE_URL="http://localhost/cgi-bin/new-sql"
_HTTP_BASE_URL="http://localhost/new"

# PATH's:
_HTTP_PATH="/usr/local/httpd/htdocs/new"
_CGI_PATH="/usr/local/httpd/cgi-bin/new-sql"


##################################################
# Default Database Definitions.
# Please make sure, this database exists
_DB_NAME="faq"

# The table names. You can keep this in most cases.
_DB_TABLE_TOPIC="topic"
_DB_TABLE_ANSWER="answer"
_DB_TABLE_QUEST="question"

# Database Config. If the database runs on the same host
# and the Webserver has all neccessary permissions, you 
# my not change it.

_DB_HOST=localhost
_DB_USER=
_DB_PASS=
##################################################

# User Name(s)
_DB_ADMIN_EMAIL="root@localhost"
_HTTPD_USER="wwwrun"
_HTTPD_GROUP="nogroup"

# If there is an older version of faq-system installed,
# then you can here specify, if your existing faq.conf
# should be overwritten or not.
# Choose "YES" to keep the old file and "NO" to overwrite it.
_KEEP_CONFIG="YES"

# binaries
_COMPILER="g++"
_INSTALL="/usr/bin/install"

# MySQL Locations
_MYSQL_INCLUDES="/usr/include/mysql"
_MYSQL_LIBS="/usr/local/mysql/lib" 

# Mode for full-index
# possible values: topic or large
_FULL_FORMAT="topic"

# Filenames of Header and Footer Template for Index
_HEADER="head.html"
_FOOTER="foot.html"
