Simple repository for the /HonigTopf (HoneyPot) link, that alerts the admins if someone tries to scrape a moin moin wiki.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
###
|
|
|
|
# app configuration
|
|
|
|
# https://docs.pylonsproject.org/projects/pyramid/en/latest/narr/environment.html
|
|
|
|
###
|
|
|
|
|
|
|
|
[app:main]
|
|
|
|
use = egg:honeypot
|
|
|
|
|
|
|
|
pyramid.reload_templates = true
|
|
|
|
pyramid.debug_authorization = false
|
|
|
|
pyramid.debug_notfound = false
|
|
|
|
pyramid.debug_routematch = false
|
|
|
|
pyramid.default_locale_name = en
|
|
|
|
pyramid.includes =
|
|
|
|
pyramid_mailer.debug
|
|
|
|
|
|
|
|
moin.config_path = /var/www/moin/config/
|
|
|
|
|
|
|
|
# email delivery
|
|
|
|
mail.host = localhost
|
|
|
|
mail.port = 2525
|
|
|
|
mail.default_sender = ordr@example.com
|
|
|
|
|
|
|
|
|
|
|
|
# By default, the toolbar only appears for clients from IP addresses
|
|
|
|
# '127.0.0.1' and '::1'.
|
|
|
|
# debugtoolbar.hosts = 127.0.0.1 ::1
|
|
|
|
|
|
|
|
###
|
|
|
|
# wsgi server configuration
|
|
|
|
###
|
|
|
|
|
|
|
|
[server:main]
|
|
|
|
use = egg:waitress#main
|
|
|
|
listen = localhost:6543
|
|
|
|
|
|
|
|
###
|
|
|
|
# logging configuration
|
|
|
|
# https://docs.pylonsproject.org/projects/pyramid/en/latest/narr/logging.html
|
|
|
|
###
|
|
|
|
|
|
|
|
[loggers]
|
|
|
|
keys = root, honeypot
|
|
|
|
|
|
|
|
[handlers]
|
|
|
|
keys = console
|
|
|
|
|
|
|
|
[formatters]
|
|
|
|
keys = generic
|
|
|
|
|
|
|
|
[logger_root]
|
|
|
|
level = INFO
|
|
|
|
handlers = console
|
|
|
|
|
|
|
|
[logger_honeypot]
|
|
|
|
level = DEBUG
|
|
|
|
handlers =
|
|
|
|
qualname = honeypot
|
|
|
|
|
|
|
|
[handler_console]
|
|
|
|
class = StreamHandler
|
|
|
|
args = (sys.stderr,)
|
|
|
|
level = NOTSET
|
|
|
|
formatter = generic
|
|
|
|
|
|
|
|
[formatter_generic]
|
|
|
|
format = %(asctime)s %(levelname)-5.5s [%(name)s:%(lineno)s][%(threadName)s] %(message)s
|