summaryrefslogtreecommitdiff
path: root/config/description.exs
diff options
context:
space:
mode:
authorfeld <feld@feld.me>2021-01-26 00:32:53 +0000
committerfeld <feld@feld.me>2021-01-26 00:32:53 +0000
commit1e3832c6bba9383abc74d5a9d8105600601dd80c (patch)
treecc53bdb521ea42a19d3dadd4143c8cec6f7f21c3 /config/description.exs
parentf1c82fbd426651e6838a9c60578c96a25ae94df4 (diff)
parent01fc7d809d33ea546abded0d1540e3b41dbb0e6a (diff)
downloadpleroma-1e3832c6bba9383abc74d5a9d8105600601dd80c.tar.gz
pleroma-1e3832c6bba9383abc74d5a9d8105600601dd80c.zip
Merge branch 'docs/apache-config' into 'develop'
Update Apache configuration See merge request pleroma/pleroma!3271
Diffstat (limited to 'config/description.exs')
-rw-r--r--config/description.exs11
1 files changed, 9 insertions, 2 deletions
diff --git a/config/description.exs b/config/description.exs
index 715a0d0c3..d7dc264ee 100644
--- a/config/description.exs
+++ b/config/description.exs
@@ -1627,13 +1627,20 @@ config :pleroma, :config_description, [
group: :pleroma,
key: Pleroma.Web.MediaProxy.Invalidation.Script,
type: :group,
- description: "Script invalidate settings",
+ description: "Invalidation script settings",
children: [
%{
key: :script_path,
type: :string,
- description: "Path to shell script. Which will run purge cache.",
+ description: "Path to executable script which will purge cached items.",
suggestions: ["./installation/nginx-cache-purge.sh.example"]
+ },
+ %{
+ key: :url_format,
+ type: :string,
+ description:
+ "Optional URL format preprocessing. Only required for Apache's htcacheclean.",
+ suggestions: [":htcacheclean"]
}
]
},