-
Notifications
You must be signed in to change notification settings - Fork 2
/
.traefik.yml
32 lines (27 loc) · 957 Bytes
/
.traefik.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# The name of your plugin as displayed in the Plugins Catalog web UI.
displayName: Plausible Feeder
# For now, `middleware` is the only type available.
type: middleware
# The import path of your plugin.
import: "github.com/safing/plausiblefeeder"
# A brief description of what your plugin is doing.
summary: Feeds HTTP requests to plausible as pageview events.
# Medias associated to the plugin (optional)
# iconPath: foo/icon.png
# bannerPath: foo/banner.png
# Configuration data for your plugin.
# This is mandatory,
# and Plugins Catalog will try to execute the plugin with the data you provide as part of its startup validity tests.
testData:
eventEndpoint: "http://plausible:8000/api/events"
domains:
- localhost
reportExtensions:
- ".html"
- "" # resources without extension
reportAllResources: false
reportAnyHost: false
reportErrors: false
remoteIPFromHeader: "X-Forwarded-For"
queueSize: 1000
debugLogging: false