summaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
authorHazelnoot <acomputerdog@gmail.com>2025-04-13 13:07:24 -0400
committerHazelnoot <acomputerdog@gmail.com>2025-04-13 13:07:24 -0400
commit91fb75dece86b757b68e3678e864c5361267fe26 (patch)
tree63990da60c40b58d89d2a81215a6a5def7ebd8ab /.config
parentMerge tag '2025.4.0' into merge/2025-03-24 (diff)
parentmerge: feat: Allow injection of raw HTML strings inside <head> (!959) (diff)
downloadsharkey-91fb75dece86b757b68e3678e864c5361267fe26.tar.gz
sharkey-91fb75dece86b757b68e3678e864c5361267fe26.tar.bz2
sharkey-91fb75dece86b757b68e3678e864c5361267fe26.zip
Merge branch 'develop' into merge/2025-03-24
Diffstat (limited to '.config')
-rw-r--r--.config/example.yml8
1 files changed, 8 insertions, 0 deletions
diff --git a/.config/example.yml b/.config/example.yml
index a4c5165428..d52d145d1e 100644
--- a/.config/example.yml
+++ b/.config/example.yml
@@ -435,3 +435,11 @@ attachLdSignatureForRelays: true
# If you're not using jemalloc, this may cause memory fragmentation and performance issues! (https://www.npmjs.com/package/ws#websocket-compression)
# jemalloc is used by default in the Sharkey Docker image and may be set up manually otherwise: https://github.com/jemalloc/jemalloc/wiki/getting-started
websocketCompression: false
+
+# Inject arbitrary HTML tags to customize Sharkey without having to fork it
+#customHtml:
+# head: |
+# <!-- The possibilities are limitless! -->
+# <script>console.log("Hello, world!")</script>
+# <style>.whatever { color: red; }</style>
+# <link rel="stylesheet" href="https://example.com/styles.css">