[DEFAULT] # kforge_home will be defined by loading program # (usually taken from KFORGEHOME environment variable) # kforge_home = / # etcdir is defined to be kforge_home/etc # This will be defined by loading program since it is needed to find this file! # here for illustrative purposes only # etcdir = %(kforge_home)s/etc # Where KForge data is stored vardir = %(kforge_home)s/var # Where general plugin data is stored plugin_data_dir = %(vardir)s/plugin_data # Where project data is stored project_data_dir = %(vardir)s/project_data # Name of service using the KForge system. service_name = KForge # Apache virtual-hosts are used and this is the IP address to listen on. # May be set to '*' ip_address = * # Port numbers for normal and secure HTTP. port_http = 80 port_https = 443 # Domain for the KForge service. # Should *not* include 'www.' domain_name = kforge.your.domain.com # this determines whether the admin or project view appear at the default # web address (domain_name/ and www.domain_name/) # options: project|admin # see kforge.url for more details address_scheme_default = admin # Whether in production or development mode # values: production (default) | development #system_mode = production # Name of initial role of new project member # possible values: Visitor | Friend (default) | Developer | Administrator #member_role = Friend # Name of initial system role of new person # possible values: Visitor (default) | Friend | Developer | Administrator #person_role = Visitor # (Only used when creating a new database.) # Name of initial role of visitor_person. # possible values: Visitor (default) | Friend | Developer | Administrator #visitor_role = Visitor [logging] # This is directory to which logging is directed default_directory = %(vardir)s/log # log file for python log_file = %(logging.default_directory)s/kforge.log # level of logging information # values (increasing verbosity): CRITICAL, ERROR, WARNING, INFO, DEBUG level = INFO [db] # Configuration of the KForge backend database # Type of database (postgres, mysql etc) # This follows the same naming convention as sqlobject type = postgres # Domain name of the server on which the database is hosted host = localhost # Name of database name = kforgetest # Name of user for database user = kforgetest # Password for user of the database password = pass [www] # File path for auto-generated apache configuration apache_config_file = %(etcdir)s/httpd.conf ssl_certificate_file = /etc/apache2/ssl/apache.pem ssl_certificate_key_file = /etc/apache2/ssl/apache.pem # Base path for KForge web files document_root = %(vardir)s/www/ # Host name for media server (CSS and image files) media_host = media.%(domain_name)s # Port number for media server (CSS and image files) media_port = %(port_http)s # File path for media files media_root = %(www.document_root)s/media # Command to reload apache config #reload_apache = sudo /etc/init.d/apache2 reload [django] # Django templates to use for web interface templates_dir = %(vardir)s/django/templates/kui # Secret key (for generating session keys) # - make yourself a new secret key secret_key = f*(d3d45zetsb3)$&2h5@lua()yc+kfn4w^dmrf_j1i(6jjkq [captcha] # Font used for captchas font_path = %(etcdir)s/FreeMono.ttf font_size = 48 # Enable captchas (otherwise disabled by default) # - uncomment (or set any value) to enable captchas #enable = 1 ## ******************************************************************** ## Plugins ## ******************************************************************** [moin] # where moin system data is installed (htdocs etc) system_path = /usr/share/moin [trac] # path to trac templates templates_path = /usr/share/trac/templates # path to htdocs files htdocs_path = /usr/share/trac/htdocs