diff --git a/.gitignore b/.gitignore index b1b6e19..ed48e01 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,4 @@ /target /.idea docker/volumes -docker/lemmy.hjson -.env lemmybb_categories.hjson diff --git a/docker/lemmy.hjson b/docker/lemmy.hjson new file mode 100644 index 0000000..1b3f2a8 --- /dev/null +++ b/docker/lemmy.hjson @@ -0,0 +1,16 @@ +# See the documentation for available config fields and descriptions: +# https://join-lemmy.org/docs/en/administration/configuration.html +{ + hostname: example.com + pictrs_url: "http://pictrs:8080" + database: { + host: postgres + } + # increase read rate limit to handle extra requests necessary to render replies and frontpage + rate_limit: { + message: 9999 + message_per_second: 1 + search: 9999 + search_per_second: 1 + } +}