owncast/web/pages/config-storage.tsx

28 lines
900 B
TypeScript
Raw Normal View History

import { Typography } from 'antd';
import React from 'react';
import EditStorage from '../components/config/edit-storage';
2021-02-01 06:45:26 +03:00
const { Title } = Typography;
2020-10-29 20:16:13 +03:00
export default function ConfigStorageInfo() {
2020-10-29 20:16:13 +03:00
return (
<>
2021-02-14 12:45:08 +03:00
<Title>Storage</Title>
<p className="description">
Owncast supports optionally using external storage providers to distribute your video. Learn
more about this by visiting our{' '}
<a href="https://owncast.online/docs/storage/?source=admin" target="_blank" rel="noopener noreferrer">
Storage Documentation
</a>
.
</p>
<p className="description">
Configuring this incorrectly will likely cause your video to be unplayable. Double check the
documentation for your storage provider on how to configure the bucket you created for
Owncast.
</p>
<EditStorage />
</>
);
2020-10-29 20:16:13 +03:00
}