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) { return null; } if (!config.s3.enabled) { return (
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.