diff --git a/web/pages/storage.tsx b/web/pages/storage.tsx index bed21f505..effb4ed2b 100644 --- a/web/pages/storage.tsx +++ b/web/pages/storage.tsx @@ -2,6 +2,10 @@ import React, { useContext } from "react"; import KeyValueTable from "./components/key-value-table"; import { ServerStatusContext } from '../utils/server-status-context'; +import { Typography } from 'antd'; +import Link from 'next/link'; + +const { Title } = Typography; function Storage({ config }) { if (!config || !config.s3) { @@ -10,10 +14,19 @@ function Storage({ config }) { if (!config.s3.enabled) { return ( -

- Local storage is being used. Enable external S3 storage if you want - to use it. TODO: Make this message somewhat more informative. Point to documentation or something. -

+
+ External Storage +

+ You are currently using the local storage of this Owncast server to store and distribute video. +

+

+ Owncast can use S3-compatible external storage providers to offload the responsibility of disk and bandwidth utilization from your own server. +

+ +

+ Visit our storage documentation to learn how to configure this. +

+
); }