Skip to content

Commit

Permalink
[docs] Self hosting public albums
Browse files Browse the repository at this point in the history
More improvements suggested by Dylanger in Discord
  • Loading branch information
mnvr committed Jun 5, 2024
1 parent 1206428 commit 1b6995f
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions docs/docs/self-hosting/faq/sharing.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ FROM node:20-alpine as builder
WORKDIR /app
COPY . .

ARG NEXT_PUBLIC_ENTE_ENDPOINT=https://your.ente.tld.api
ENV NEXT_PUBLIC_ENTE_ALBUMS_ENDPOINT=https://your.albums.tld.api
ARG NEXT_PUBLIC_ENTE_ENDPOINT=https://your.ente.example.org
ARG NEXT_PUBLIC_ENTE_ALBUMS_ENDPOINT=https://your.albums.example.org

RUN yarn install && yarn build

Expand All @@ -93,3 +93,12 @@ used to run both the normal Ente photos app and the public albums app. There is
a slightly more involved example showing how to do this also provided by in a
community contributed guide about
[configuring external S3](/self-hosting/guides/external-s3).

You will also want to tell museum about your custom shared albums endpoint so
that it uses that instead of the default URL when creating share links. You can
configure that in museum's `config.yaml`:

```
apps:
public-albums: https://your.albums.example.org
```

0 comments on commit 1b6995f

Please sign in to comment.