development.ini
441 lines
| 13.4 KiB
| text/x-ini
|
IniLexer
Marcin Kuzminski
|
r12 | ################################################################################ | ||
################################################################################ | ||||
Mads Kiilerich
|
r6818 | # Kallithea - config file generated with kallithea-config # | ||
r4068 | # # | |||
Marcin Kuzminski
|
r12 | # The %(here)s variable will be replaced with the parent directory of this file# | ||
################################################################################ | ||||
Mads Kiilerich
|
r4225 | ################################################################################ | ||
Marcin Kuzminski
|
r10 | |||
Marcin Kuzminski
|
r0 | [DEFAULT] | ||
Mads Kiilerich
|
r4225 | |||
r474 | ################################################################################ | |||
Søren Løvborg
|
r5412 | ## Email settings ## | ||
Thomas De Schampheleire
|
r5366 | ## ## | ||
Søren Løvborg
|
r5412 | ## Refer to the documentation ("Email settings") for more details. ## | ||
Thomas De Schampheleire
|
r5366 | ## ## | ||
## It is recommended to use a valid sender address that passes access ## | ||||
## validation and spam filtering in mail servers. ## | ||||
r474 | ################################################################################ | |||
Thomas De Schampheleire
|
r5366 | |||
Søren Løvborg
|
r5412 | ## 'From' header for application emails. You can optionally add a name. | ||
Thomas De Schampheleire
|
r5366 | ## Default: | ||
Thomas De Schampheleire
|
r5365 | #app_email_from = Kallithea | ||
Thomas De Schampheleire
|
r5366 | ## Examples: | ||
Thomas De Schampheleire
|
r5365 | #app_email_from = Kallithea <kallithea-noreply@example.com> | ||
#app_email_from = kallithea-noreply@example.com | ||||
Thomas De Schampheleire
|
r5366 | |||
Søren Løvborg
|
r5412 | ## Subject prefix for application emails. | ||
Thomas De Schampheleire
|
r5366 | ## A space between this prefix and the real subject is automatically added. | ||
## Default: | ||||
Thomas De Schampheleire
|
r5365 | #email_prefix = | ||
Thomas De Schampheleire
|
r5366 | ## Example: | ||
Thomas De Schampheleire
|
r5365 | #email_prefix = [Kallithea] | ||
Søren Løvborg
|
r5412 | ## Recipients for error emails and fallback recipients of application mails. | ||
Thomas De Schampheleire
|
r7054 | ## Multiple addresses can be specified, comma-separated. | ||
Thomas De Schampheleire
|
r5366 | ## Only addresses are allowed, do not add any name part. | ||
## Default: | ||||
#email_to = | ||||
## Examples: | ||||
Thomas De Schampheleire
|
r5365 | #email_to = admin@example.com | ||
Thomas De Schampheleire
|
r7054 | #email_to = admin@example.com,another_admin@example.com | ||
Thomas De Schampheleire
|
r6529 | email_to = | ||
Thomas De Schampheleire
|
r5366 | |||
Søren Løvborg
|
r5412 | ## 'From' header for error emails. You can optionally add a name. | ||
Thomas De Schampheleire
|
r6529 | ## Default: (none) | ||
Thomas De Schampheleire
|
r5366 | ## Examples: | ||
Thomas De Schampheleire
|
r5365 | #error_email_from = Kallithea Errors <kallithea-noreply@example.com> | ||
Thomas De Schampheleire
|
r6529 | #error_email_from = kallithea_errors@example.com | ||
error_email_from = | ||||
r474 | ||||
Thomas De Schampheleire
|
r5366 | ## SMTP server settings | ||
Mads Kiilerich
|
r5844 | ## If specifying credentials, make sure to use secure connections. | ||
## Default: Send unencrypted unauthenticated mails to the specified smtp_server. | ||||
## For "SSL", use smtp_use_ssl = true and smtp_port = 465. | ||||
## For "STARTTLS", use smtp_use_tls = true and smtp_port = 587. | ||||
Thomas De Schampheleire
|
r6529 | smtp_server = | ||
r4068 | #smtp_username = | |||
#smtp_password = | ||||
Thomas De Schampheleire
|
r6529 | smtp_port = | ||
Mads Kiilerich
|
r5844 | #smtp_use_ssl = false | ||
r776 | #smtp_use_tls = false | |||
Marcin Kuzminski
|
r0 | |||
Mads Kiilerich
|
r6858 | ## Entry point for 'gearbox serve' | ||
Marcin Kuzminski
|
r0 | [server:main] | ||
Mads Kiilerich
|
r6858 | #host = 127.0.0.1 | ||
host = 0.0.0.0 | ||||
port = 5000 | ||||
r3902 | ## WAITRESS ## | |||
use = egg:waitress#main | ||||
## number of worker threads | ||||
Mads Kiilerich
|
r6116 | threads = 1 | ||
r3902 | ## MAX BODY SIZE 100GB | |||
r3376 | max_request_body_size = 107374182400 | |||
r3902 | ## use poll instead of select, fixes fd limits, may not work on old | |||
## windows systems. | ||||
r3938 | #asyncore_use_poll = True | |||
r3087 | ||||
Mads Kiilerich
|
r5079 | ## middleware for hosting the WSGI application under a URL prefix | ||
r3557 | #[filter:proxy-prefix] | |||
#use = egg:PasteDeploy#prefix | ||||
#prefix = /<your-prefix> | ||||
r2615 | ||||
Marcin Kuzminski
|
r0 | [app:main] | ||
Bradley M. Kuhn
|
r4186 | use = egg:kallithea | ||
r3557 | ## enable proxy prefix middleware | |||
r2615 | #filter-with = proxy-prefix | |||
r3557 | ||||
Marcin Kuzminski
|
r0 | full_stack = true | ||
r253 | static_files = true | |||
Thomas De Schampheleire
|
r6629 | |||
## Internationalization (see setup documentation for details) | ||||
## By default, the language requested by the browser is used if available. | ||||
#i18n.enable = false | ||||
## Fallback language, empty for English (valid values are the names of subdirectories in kallithea/i18n): | ||||
i18n.lang = | ||||
Marcin Kuzminski
|
r0 | cache_dir = %(here)s/data | ||
r683 | index_dir = %(here)s/data/index | |||
r3557 | ||||
r3778 | ## perform a full repository scan on each server start, this should be | |||
## set to false after first startup, to allow faster server restarts. | ||||
Mads Kiilerich
|
r4225 | #initial_repo_scan = false | ||
r3778 | initial_repo_scan = true | |||
r3557 | ## uncomment and set this path to use archive download cache | |||
Mads Kiilerich
|
r4225 | archive_cache_dir = %(here)s/tarballcache | ||
r3557 | ||||
## change this to unique ID for security | ||||
Mads Kiilerich
|
r6816 | #app_instance_uuid = VERY-SECRET | ||
Mads Kiilerich
|
r4225 | app_instance_uuid = development-not-secret | ||
r3557 | ||||
## cut off limit for large diffs (size in bytes) | ||||
r812 | cut_off_limit = 256000 | |||
r3557 | ||||
Bradley M. Kuhn
|
r4212 | ## force https in Kallithea, fixes https redirects, assumes it's always https | ||
r914 | force_https = false | |||
r3557 | ||||
## use Strict-Transport-Security headers | ||||
r3359 | use_htsts = false | |||
r3557 | ||||
## number of commits stats will parse on each iteration | ||||
r1076 | commit_parse_limit = 25 | |||
r3557 | ||||
## path to git executable | ||||
r3376 | git_path = git | |||
r3561 | ## git rev filter option, --all is the default filter, if you need to | |||
## hide all refs in changelog switch this to --branches --tags | ||||
Mads Kiilerich
|
r4225 | #git_rev_filter = --branches --tags | ||
r3561 | ||||
r3028 | ## RSS feed options | |||
rss_cut_off_limit = 256000 | ||||
rss_items_per_page = 10 | ||||
rss_include_diff = false | ||||
Mads Kiilerich
|
r3651 | ## options for showing and identifying changesets | ||
show_sha_length = 12 | ||||
domruf
|
r4549 | show_revision_number = false | ||
r3557 | ||||
Mads Kiilerich
|
r5845 | ## Canonical URL to use when creating full URLs in UI and texts. | ||
## Useful when the site is available under different names or protocols. | ||||
## Defaults to what is provided in the WSGI environment. | ||||
#canonical_url = https://kallithea.example.com/repos | ||||
r3850 | ## gist URL alias, used to create nicer urls for gist. This should be an | |||
r4066 | ## url that does rewrites to _admin/gists/<gistid>. | |||
Søren Løvborg
|
r5497 | ## example: http://gist.example.com/{gistid}. Empty means use the internal | ||
## Kallithea url, ie. http[s]://kallithea.example.com/_admin/gists/<gistid> | ||||
r3850 | gist_alias_url = | |||
r3751 | ## white list of API enabled controllers. This allows to add list of | |||
## controllers to which access will be enabled by api_key. eg: to enable | ||||
## api access to raw_files put `FilesController:raw`, to enable access to patches | ||||
## add `ChangesetController:changeset_patch`. This list should be "," separated | ||||
## Syntax is <ControllerClass>:<function>. Check debug logs for generated names | ||||
Mads Kiilerich
|
r4225 | ## Recommended settings below are commented out: | ||
r3751 | api_access_controllers_whitelist = | |||
r4066 | # ChangesetController:changeset_patch, | |||
# ChangesetController:changeset_raw, | ||||
# FilesController:raw, | ||||
# FilesController:archivefile | ||||
r3028 | ||||
r3008 | ## default encoding used to convert from and to unicode | |||
timeless@gmail.com
|
r5827 | ## can be also a comma separated list of encoding in case of mixed encodings | ||
r2016 | default_encoding = utf8 | |||
Marcin Kuzminski
|
r0 | |||
Bradley M. Kuhn
|
r4212 | ## issue tracker for Kallithea (leave blank to disable, absent for default) | ||
Bradley M. Kuhn
|
r4179 | #bugtracker = https://bitbucket.org/conservancy/kallithea/issues | ||
Jonathan Sternberg
|
r4006 | |||
r1837 | ## issue tracking mapping for commits messages | |||
r1933 | ## comment out issue_pat, issue_server, issue_prefix to enable | |||
r1837 | ||||
## pattern to get the issues from commit messages | ||||
r1933 | ## default one used here is #<numbers> with a regex passive group for `#` | |||
## {id} will be all groups matched from this pattern | ||||
r1837 | ||||
r1933 | issue_pat = (?:\s*#)(\d+) | |||
r1837 | ||||
r1933 | ## server url to the issue, each {id} will be replaced with match | |||
r2339 | ## fetched from the regex and {repo} is replaced with full repository name | |||
## including groups {repo_name} is replaced with just name of repo | ||||
r1837 | ||||
Søren Løvborg
|
r5497 | issue_server_link = https://issues.example.com/{repo}/issue/{id} | ||
r1837 | ||||
## prefix to add to link to indicate it's an url | ||||
## #314 will be replaced by <issue_prefix><id> | ||||
r1865 | issue_prefix = # | |||
r1837 | ||||
r2866 | ## issue_pat, issue_server_link, issue_prefix can have suffixes to specify | |||
## multiple patterns, to other issues server, wiki or others | ||||
r4068 | ## below an example how to create a wiki pattern | |||
Søren Løvborg
|
r5497 | # wiki-some-id -> https://wiki.example.com/some-id | ||
r2866 | ||||
#issue_pat_wiki = (?:wiki-)(.+) | ||||
Søren Løvborg
|
r5497 | #issue_server_link_wiki = https://wiki.example.com/{id} | ||
r2866 | #issue_prefix_wiki = WIKI- | |||
r2132 | ## alternative return HTTP header for failed authentication. Default HTTP | |||
Na'Tosha Bard
|
r4527 | ## response is 401 HTTPUnauthorized. Currently Mercurial clients have trouble with | ||
r2132 | ## handling that. Set this variable to 403 to return HTTPForbidden | |||
auth_ret_code = | ||||
r3522 | ## locking return code. When repository is locked return this HTTP code. 2XX | |||
## codes don't break the transactions while 4XX codes do | ||||
lock_ret_code = 423 | ||||
r4045 | ## allows to change the repository location in settings page | |||
r3920 | allow_repo_location_change = True | |||
r3522 | ||||
r4045 | ## allows to setup custom hooks in settings page | |||
allow_custom_hooks_settings = True | ||||
Takumi IINO
|
r5559 | ## extra extensions for indexing, space separated and without the leading '.'. | ||
# index.extensions = | ||||
# gemfile | ||||
# lock | ||||
## extra filenames for indexing, space separated | ||||
# index.filenames = | ||||
# .dockerignore | ||||
# .editorconfig | ||||
# INSTALL | ||||
# CHANGELOG | ||||
Marcin Kuzminski
|
r49 | #################################### | ||
r776 | ### CELERY CONFIG #### | |||
#################################### | ||||
Mads Kiilerich
|
r4225 | |||
r776 | use_celery = false | |||
Mads Kiilerich
|
r6138 | |||
## Example: connect to the virtual host 'rabbitmqhost' on localhost as rabbitmq: | ||||
broker.url = amqp://rabbitmq:qewqew@localhost:5672/rabbitmqhost | ||||
r776 | ||||
Bradley M. Kuhn
|
r4186 | celery.imports = kallithea.lib.celerylib.tasks | ||
Mads Kiilerich
|
r6138 | celery.accept.content = pickle | ||
r776 | celery.result.backend = amqp | |||
celery.result.dburi = amqp:// | ||||
celery.result.serialier = json | ||||
#celery.send.task.error.emails = true | ||||
#celery.amqp.task.result.expires = 18000 | ||||
celeryd.concurrency = 2 | ||||
r1076 | celeryd.max.tasks.per.child = 1 | |||
r776 | ||||
Mads Kiilerich
|
r6138 | ## If true, tasks will never be sent to the queue, but executed locally instead. | ||
r776 | celery.always.eager = false | |||
#################################### | ||||
Marcin Kuzminski
|
r49 | ### BEAKER CACHE #### | ||
#################################### | ||||
Mads Kiilerich
|
r4225 | |||
Mads Kiilerich
|
r5364 | beaker.cache.data_dir = %(here)s/data/cache/data | ||
beaker.cache.lock_dir = %(here)s/data/cache/lock | ||||
r1076 | ||||
Mads Kiilerich
|
r5399 | beaker.cache.regions = short_term,long_term,sql_cache_short | ||
r609 | ||||
Mads Kiilerich
|
r5364 | beaker.cache.short_term.type = memory | ||
beaker.cache.short_term.expire = 60 | ||||
r1607 | beaker.cache.short_term.key_length = 256 | |||
r609 | ||||
Mads Kiilerich
|
r5364 | beaker.cache.long_term.type = memory | ||
beaker.cache.long_term.expire = 36000 | ||||
r1607 | beaker.cache.long_term.key_length = 256 | |||
r597 | ||||
Mads Kiilerich
|
r5364 | beaker.cache.sql_cache_short.type = memory | ||
beaker.cache.sql_cache_short.expire = 10 | ||||
r1607 | beaker.cache.sql_cache_short.key_length = 256 | |||
r609 | ||||
r436 | #################################### | |||
### BEAKER SESSION #### | ||||
#################################### | ||||
Mads Kiilerich
|
r5400 | |||
## Name of session cookie. Should be unique for a given host and path, even when running | ||||
## on different ports. Otherwise, cookie sessions will be shared and messed up. | ||||
beaker.session.key = kallithea | ||||
## Sessions should always only be accessible by the browser, not directly by JavaScript. | ||||
beaker.session.httponly = true | ||||
## Session lifetime. 2592000 seconds is 30 days. | ||||
beaker.session.timeout = 2592000 | ||||
## Server secret used with HMAC to ensure integrity of cookies. | ||||
Mads Kiilerich
|
r6816 | #beaker.session.secret = VERY-SECRET | ||
Mads Kiilerich
|
r5400 | beaker.session.secret = development-not-secret | ||
## Further, encrypt the data with AES. | ||||
#beaker.session.encrypt_key = <key_for_encryption> | ||||
#beaker.session.validate_key = <validation_key> | ||||
r4068 | ## Type of storage used for the session, current types are | |||
## dbm, file, memcached, database, and memory. | ||||
Mads Kiilerich
|
r5400 | |||
## File system storage of session data. (default) | ||||
#beaker.session.type = file | ||||
r1660 | ||||
Mads Kiilerich
|
r5400 | ## Cookie only, store all session data inside the cookie. Requires secure secrets. | ||
#beaker.session.type = cookie | ||||
## Database storage of session data. | ||||
r1660 | #beaker.session.type = ext:database | |||
Bradley M. Kuhn
|
r4210 | #beaker.session.sa.url = postgresql://postgres:qwe@localhost/kallithea | ||
r4068 | #beaker.session.table_name = db_session | |||
r1660 | ||||
Marcin Kuzminski
|
r12 | ################################################################################ | ||
Thomas De Schampheleire
|
r6526 | ## WARNING: *DEBUG MODE MUST BE OFF IN A PRODUCTION ENVIRONMENT* ## | ||
Marcin Kuzminski
|
r12 | ## Debug mode will enable the interactive debugging tool, allowing ANYONE to ## | ||
## execute malicious code after an exception is raised. ## | ||||
################################################################################ | ||||
Thomas De Schampheleire
|
r6526 | #debug = false | ||
debug = true | ||||
Marcin Kuzminski
|
r0 | |||
Marcin Kuzminski
|
r49 | ################################## | ||
### LOGVIEW CONFIG ### | ||||
################################## | ||||
Mads Kiilerich
|
r4225 | |||
Marcin Kuzminski
|
r49 | logview.sqlalchemy = #faa | ||
logview.pylons.templating = #bfb | ||||
logview.pylons.util = #eee | ||||
######################################################### | ||||
### DB CONFIGS - EACH DB WILL HAVE IT'S OWN CONFIG ### | ||||
######################################################### | ||||
Mads Kiilerich
|
r4225 | |||
# SQLITE [default] | ||||
Thomas De Schampheleire
|
r6177 | sqlalchemy.url = sqlite:///%(here)s/kallithea.db?timeout=60 | ||
Mads Kiilerich
|
r4225 | |||
# see sqlalchemy docs for others | ||||
Thomas De Schampheleire
|
r6177 | sqlalchemy.pool_recycle = 3600 | ||
Marcin Kuzminski
|
r49 | |||
Marcin Kuzminski
|
r12 | ################################ | ||
Søren Løvborg
|
r5982 | ### ALEMBIC CONFIGURATION #### | ||
################################ | ||||
[alembic] | ||||
script_location = kallithea:alembic | ||||
Marcin Kuzminski
|
r49 | |||
Marcin Kuzminski
|
r12 | ################################ | ||
### LOGGING CONFIGURATION #### | ||||
################################ | ||||
Mads Kiilerich
|
r4225 | |||
Marcin Kuzminski
|
r0 | [loggers] | ||
Alessandro Molina
|
r6522 | keys = root, routes, kallithea, sqlalchemy, tg, gearbox, beaker, templates, whoosh_indexer | ||
Marcin Kuzminski
|
r0 | |||
[handlers] | ||||
r1186 | keys = console, console_sql | |||
Marcin Kuzminski
|
r0 | |||
[formatters] | ||||
r1186 | keys = generic, color_formatter, color_formatter_sql | |||
Marcin Kuzminski
|
r0 | |||
Marcin Kuzminski
|
r12 | ############# | ||
Marcin Kuzminski
|
r0 | ## LOGGERS ## | ||
Marcin Kuzminski
|
r12 | ############# | ||
Mads Kiilerich
|
r4225 | |||
Marcin Kuzminski
|
r0 | [logger_root] | ||
Marcin Kuzminski
|
r15 | level = NOTSET | ||
Marcin Kuzminski
|
r12 | handlers = console | ||
Marcin Kuzminski
|
r0 | |||
[logger_routes] | ||||
Marcin Kuzminski
|
r69 | level = DEBUG | ||
r4068 | handlers = | |||
Marcin Kuzminski
|
r0 | qualname = routes.middleware | ||
r3557 | ## "level = DEBUG" logs the route matched and routing variables. | |||
r1186 | propagate = 1 | |||
Marcin Kuzminski
|
r0 | |||
r716 | [logger_beaker] | |||
r1186 | level = DEBUG | |||
r4068 | handlers = | |||
r716 | qualname = beaker.container | |||
r1186 | propagate = 1 | |||
r716 | ||||
[logger_templates] | ||||
level = INFO | ||||
r4068 | handlers = | |||
r716 | qualname = pylons.templating | |||
r1186 | propagate = 1 | |||
r716 | ||||
Bradley M. Kuhn
|
r4207 | [logger_kallithea] | ||
Marcin Kuzminski
|
r0 | level = DEBUG | ||
r4068 | handlers = | |||
Bradley M. Kuhn
|
r4207 | qualname = kallithea | ||
r1186 | propagate = 1 | |||
Marcin Kuzminski
|
r12 | |||
Alessandro Molina
|
r6522 | [logger_tg] | ||
level = DEBUG | ||||
handlers = | ||||
qualname = tg | ||||
propagate = 1 | ||||
Mads Kiilerich
|
r6509 | [logger_gearbox] | ||
level = DEBUG | ||||
handlers = | ||||
qualname = gearbox | ||||
propagate = 1 | ||||
Marcin Kuzminski
|
r12 | [logger_sqlalchemy] | ||
domruf
|
r6566 | level = WARN | ||
r1186 | handlers = console_sql | |||
Marcin Kuzminski
|
r12 | qualname = sqlalchemy.engine | ||
r93 | propagate = 0 | |||
Marcin Kuzminski
|
r12 | |||
r2102 | [logger_whoosh_indexer] | |||
level = DEBUG | ||||
r4068 | handlers = | |||
r2102 | qualname = whoosh_indexer | |||
propagate = 1 | ||||
Marcin Kuzminski
|
r12 | ############## | ||
Marcin Kuzminski
|
r0 | ## HANDLERS ## | ||
Marcin Kuzminski
|
r12 | ############## | ||
Marcin Kuzminski
|
r0 | |||
[handler_console] | ||||
class = StreamHandler | ||||
args = (sys.stderr,) | ||||
Mads Kiilerich
|
r4225 | #formatter = generic | ||
r153 | formatter = color_formatter | |||
Marcin Kuzminski
|
r0 | |||
r1186 | [handler_console_sql] | |||
class = StreamHandler | ||||
args = (sys.stderr,) | ||||
Mads Kiilerich
|
r4225 | #formatter = generic | ||
r1186 | formatter = color_formatter_sql | |||
Marcin Kuzminski
|
r12 | ################ | ||
Marcin Kuzminski
|
r0 | ## FORMATTERS ## | ||
Marcin Kuzminski
|
r12 | ################ | ||
Marcin Kuzminski
|
r0 | |||
[formatter_generic] | ||||
r153 | format = %(asctime)s.%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s | |||
Marcin Kuzminski
|
r46 | datefmt = %Y-%m-%d %H:%M:%S | ||
Marcin Kuzminski
|
r0 | |||
r153 | [formatter_color_formatter] | |||
Mads Kiilerich
|
r5364 | class = kallithea.lib.colored_formatter.ColorFormatter | ||
format = %(asctime)s.%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s | ||||
r1186 | datefmt = %Y-%m-%d %H:%M:%S | |||
[formatter_color_formatter_sql] | ||||
Mads Kiilerich
|
r5364 | class = kallithea.lib.colored_formatter.ColorFormatterSql | ||
format = %(asctime)s.%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s | ||||
r1278 | datefmt = %Y-%m-%d %H:%M:%S | |||