Skip to content

Commit

Permalink
docs(wasm): expand inline kong.conf doc strings
Browse files Browse the repository at this point in the history
  • Loading branch information
flrgh authored and gszr committed Jul 19, 2023
1 parent dfeaf0d commit 6db62fc
Showing 1 changed file with 30 additions and 4 deletions.
34 changes: 30 additions & 4 deletions kong.conf.default
Original file line number Diff line number Diff line change
Expand Up @@ -1957,8 +1957,34 @@
# WASM
#------------------------------------------------------------------------------

#wasm = off # Use this setting to enable wasm, this allows running
# wasm filters to process request data.
#wasm = off # Enable/disable wasm support. This must be enabled in
# order to use wasm filters and filter chains.

#wasm_filters_path = # Path to the directory containing Wasm filters
# that Kong must load on startup.
#wasm_filters_path = # Path to the directory containing wasm filter modules.
#
# At startup, Kong discovers available wasm filters by
# scanning this directory for files with the `.wasm`
# file extension.
#
# The name of a wasm filter module is derived from the
# filename itself, with the .wasm extension removed. So,
# given the following tree:
#
# ```
# /path/to/wasm_filters
# β”œβ”€β”€ my_module.wasm
# β”œβ”€β”€ my_other_module.wasm
# └── not_a_wasm_module.txt
# ```
#
# The resulting filter modules available for use in Kong
# will be:
#
# * `my_module`
# * `my_other_module`
#
# Notes:
#
# * No recursion is performed. Only .wasm files at the
# top level are registered
# * This path _may_ be a symlink to a directory.

1 comment on commit 6db62fc

@khcp-gha-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bazel Build

Docker image available kong/kong:6db62fc8bed3395a9f703c38419f98fb78a3083f
Artifacts available https://github.com/Kong/kong/actions/runs/5603492675

Please sign in to comment.