iwla/default_conf.py

72 lines
2.1 KiB
Python
Raw Normal View History

2014-12-19 18:06:02 +01:00
# -*- coding: utf-8 -*-
2014-11-30 19:05:17 +01:00
import os
2014-11-21 16:57:11 +01:00
# Default configuration
# Default database directory
DB_ROOT = './output_db'
# Default HTML output directory
2014-11-30 19:05:17 +01:00
DISPLAY_ROOT = './output'
2014-11-21 16:57:11 +01:00
2014-12-08 18:38:40 +01:00
# Hooks directories (don't edit)
HOOKS_ROOT = 'plugins'
2014-11-22 19:23:56 +01:00
PRE_HOOK_DIRECTORY = HOOKS_ROOT + '.pre_analysis'
POST_HOOK_DIRECTORY = HOOKS_ROOT + '.post_analysis'
DISPLAY_HOOK_DIRECTORY = HOOKS_ROOT + '.display'
2014-12-08 18:38:40 +01:00
# Meta Database filename
META_FILENAME = 'meta.db'
2014-12-08 18:38:40 +01:00
# Database filename per month
2014-11-21 16:57:11 +01:00
DB_FILENAME = 'iwla.db'
2014-12-19 17:21:45 +01:00
# Web server log format (nginx style). Default is apache log format
2014-11-21 16:57:11 +01:00
log_format = '$server_name:$server_port $remote_addr - $remote_user [$time_local] ' +\
'"$request" $status $body_bytes_sent ' +\
2017-08-23 20:11:17 +02:00
'"$http_referer?" "$http_user_agent?"'
2014-11-21 16:57:11 +01:00
2014-12-08 18:38:40 +01:00
# Time format used in log format
2014-12-10 21:41:22 +01:00
time_format = '%d/%b/%Y:%H:%M:%S %z'
2014-11-21 16:57:11 +01:00
2014-12-08 18:38:40 +01:00
# Hooks that are loaded at runtime (only set names without path and extensions)
2014-11-21 16:57:11 +01:00
pre_analysis_hooks = []
post_analysis_hooks = []
display_hooks = []
2014-12-19 17:21:45 +01:00
# Extensions that are considered as a HTML page (or result) in opposite to hits
pages_extensions = ['/', 'htm', 'html', 'xhtml', 'py', 'pl', 'rb', 'php']
2016-08-20 13:11:22 +02:00
# HTTP codes that are considered OK
2014-11-26 16:17:16 +01:00
viewed_http_codes = [200, 304]
2014-12-08 18:38:40 +01:00
# If False, doesn't cout visitors that doesn't GET a page but resources only (images, rss...)
count_hit_only_visitors = False
2014-12-08 18:38:40 +01:00
# Multimedia extensions (not accounted as downloaded files)
2015-08-14 07:49:53 +02:00
multimedia_files = ['png', 'jpg', 'jpeg', 'gif', 'ico', 'svg',
'css', 'js']
2014-11-30 19:05:17 +01:00
2014-12-08 18:38:40 +01:00
# Default resources path (will be symlinked in DISPLAY_OUTPUT)
2014-11-30 19:05:17 +01:00
resources_path = ['resources']
2014-12-08 18:38:40 +01:00
# Icon path
icon_path = '%s/%s' % (os.path.basename(resources_path[0]), 'icon')
2014-12-08 18:38:40 +01:00
# CSS path (you can add yours)
css_path = ['%s/%s/%s' % (os.path.basename(resources_path[0]), 'css', 'iwla.css')]
2014-12-15 21:28:25 +01:00
2014-12-19 17:21:45 +01:00
# Files extensions to compress in gzip during display build
compress_output_files = ['html', 'css', 'js']
2014-12-17 19:00:42 +01:00
# Path to locales files
locales_path = './locales'
# Default locale (english)
2024-02-15 10:54:52 +01:00
locale = 'en'
# Don't keep requests of all visitors into database
keep_requests = False
# Domain names that should be ignored
excluded_domain_name = []
# Domains that set no-referer as Referer-Policy
no_referrer_domains = []