From 91752685d368cff73f627f15daab0a79404d6500 Mon Sep 17 00:00:00 2001 From: Mohamed H <933509-Kentoseth@users.noreply.gitlab.com> Date: Fri, 2 Dec 2022 00:33:54 +0000 Subject: [PATCH] These instructions are outdated with a 1.3.0 install. There is a bug in the current static dir that prevents the soapbox frontend from displaying, hence step 3. --- docs/administration/install-yunohost.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/docs/administration/install-yunohost.md b/docs/administration/install-yunohost.md index af99231b4..156547d9e 100644 --- a/docs/administration/install-yunohost.md +++ b/docs/administration/install-yunohost.md @@ -7,7 +7,7 @@ If you want to install Soapbox to a Pleroma instance installed using [YunoHost]( First, download the latest build of Soapbox from GitLab. ```sh -curl -L https://gitlab.com/soapbox-pub/soapbox/-/jobs/artifacts/v1.3.0/download?job=build-production -o soapbox-fe.zip +curl -L https://gitlab.com/soapbox-pub/soapbox/-/jobs/artifacts/develop/download?job=build-production -o soapbox-fe.zip ``` ## 2. Unzip the build @@ -18,6 +18,18 @@ Then, unzip the build to the Pleroma directory under YunoHost's directory: busybox unzip soapbox-fe.zip -o -d /home/yunohost.app/pleroma/ ``` +## 3. Change YunoHost Admin Static directory + +(A bug documented in the YunoHost deployment about this issue is [here](https://github.com/YunoHost-Apps/pleroma_ynh/issues/215)) + +Go to: + +> Admin Panel > Settings > Instance + +Look for the "Static dir" entry and set it to: + +> /home/yunohost.app/pleroma/static + **That's it! 🎉 Soapbox is installed.** The change will take effect immediately, just refresh your browser tab. It's not necessary to restart the Pleroma service. ---