mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 04:00:02 +00:00
25 lines
732 B
Text
25 lines
732 B
Text
|
{
|
||
|
# for more info about the config, check out the documentation
|
||
|
# https://join-lemmy.org/docs/en/administration/configuration.html
|
||
|
|
||
|
# This is a minimal lemmy config for the dev / main branch. Do not use for a
|
||
|
# release / stable version.
|
||
|
|
||
|
setup: {
|
||
|
# username for the admin user
|
||
|
admin_username: "lemmy"
|
||
|
# password for the admin user
|
||
|
admin_password: "lemmylemmy"
|
||
|
# name of the site (can be changed later)
|
||
|
site_name: "lemmy-dev"
|
||
|
}
|
||
|
|
||
|
opentelemetry_url: "http://otel:4137"
|
||
|
|
||
|
# the domain name of your instance (eg "lemmy.ml")
|
||
|
hostname: "localhost"
|
||
|
# address where lemmy should listen for incoming requests
|
||
|
bind: "0.0.0.0"
|
||
|
# port where lemmy should listen for incoming requests
|
||
|
port: 8536
|
||
|
}
|