Post APhXMvnN0cQhpOzZxo by th0mcat@toot.thomcat.rocks
 (DIR) More posts by th0mcat@toot.thomcat.rocks
 (DIR) Post #APVRyd4w79w5A5HYZs by th0mcat@toot.thomcat.rocks
       2022-11-11T20:56:25.301574Z
       
       0 likes, 0 repeats
       
       @feld whew, got a Pleroma instance set up.  How do I change the background?
       
 (DIR) Post #APVRyhGmX3mu9yr4b2 by feld@bikeshed.party
       2022-11-11T21:14:15.324063Z
       
       0 likes, 0 repeats
       
       @th0mcat do you have ConfigDB enabled?config :pleroma, configurable_from_database: trueif so you can go to /pleroma/admin and login thereSettings -> Frontendupload and set a background image there
       
 (DIR) Post #APVYPKgXD0bletz7XU by th0mcat@toot.thomcat.rocks
       2022-11-11T21:24:51.830314Z
       
       0 likes, 0 repeats
       
       @feld just added that line to my config-override.exs (using the  https://github.com/angristan/docker-pleroma docker image) and restarted the container, but I'm still getting the 400 error when I hit the admin webGUI.  Oh well, probably just going to use alternate front ends anyway.
       
 (DIR) Post #APVYPLCRIO83FqubGi by feld@bikeshed.party
       2022-11-11T22:26:24.152561Z
       
       0 likes, 0 repeats
       
       @th0mcat i just looked at that Docker setup and the default config.exs...there's no way that config-override.exs is going to work because it's not actually imported from config.exs haha
       
 (DIR) Post #APhXMvnN0cQhpOzZxo by th0mcat@toot.thomcat.rocks
       2022-11-17T17:07:01.287539Z
       
       0 likes, 0 repeats
       
       @feld So, turns out it does work, as long as you bind mount ./config-override.exs:/var/lib/pleroma/config.exs:ro.  The last stanza of config.exs includes:if File.exists?(“/var/lib/pleroma/config.exs”),  do: import_config(“/var/lib/pleroma/config.exs”),
       
 (DIR) Post #APhXMwGnFDxvIel4pE by feld@bikeshed.party
       2022-11-17T17:11:24.529950Z
       
       0 likes, 0 repeats
       
       @th0mcat ahh, yes, in that case it would work i suppose