|
################################################################################
|
|
# #
|
|
# FreenetIS configuration file (see http://www.freenetis.org) #
|
|
# #
|
|
# Allows to configure basic options of FreenetIS such as server name on #
|
|
# which it is hosted and protocol which is used for accessing. These options #
|
|
# are used for configuration of apache server. #
|
|
# #
|
|
# After changing of any configuration option an dpkg-reconfigure on freenetis #
|
|
# package must be run for making changes to configuration of FreenetIS #
|
|
# instance. #
|
|
# #
|
|
################################################################################
|
|
|
|
# Server Name (with path) on which the FreenetIS will be hosted
|
|
SERVERNAME="localhost/freenetis"
|
|
|
|
# Protocol for accessing of FreenetIS (http or https)
|
|
PROTOCOL="http"
|
|
|
|
# File for logging of apache errors (FreenetIS has its own logs stored in
|
|
# /var/www/freenetis/logs)
|
|
ERROR_LOG_FILE="/var/log/apache2/freenetis.error.log"
|
|
|
|
# File for logging of apache common messages (FreenetIS has its own logs stored
|
|
# in /var/www/freenetis/logs)
|
|
CUSTOM_LOG_FILE="/var/log/apache2/freenetis.log"
|
|
|
|
### SSL variables - only used if protocol is set to https ######################
|
|
# #
|
|
# SEE: http://httpd.apache.org/docs/2.2/mod/mod_ssl.html#page-header #
|
|
# #
|
|
################################################################################
|
|
|
|
# SSL Certificate File
|
|
SSL_CERTIFICATE_FILE="/etc/freenetis/https/ssl.crt"
|
|
# SSL Certificate Key File
|
|
SSL_CERTIFICATE_KEY_FILE="/etc/freenetis/https/ssl.key"
|
|
|
|
# SSL Certificate Chain File [optional]
|
|
SSL_CERTIFICATE_CHAIN_FILE="/etc/freenetis/https/sub.class1.server.ca.pem"
|
|
# SSL Certificate Authority Certificate File [optional]
|
|
SSL_CA_CERTIFICATE_FILE="/etc/freenetis/https/ca.pem"
|