2021-02-01 09:05:09 +01:00
|
|
|
import { Typography } from 'antd';
|
|
|
|
import React from 'react';
|
2021-02-07 04:38:58 +01:00
|
|
|
import EditStorage from '../components/config/edit-storage';
|
2021-02-01 04:45:26 +01:00
|
|
|
|
2021-02-01 08:40:39 +01:00
|
|
|
const { Title } = Typography;
|
2020-10-29 18:16:13 +01:00
|
|
|
|
2021-02-01 08:40:39 +01:00
|
|
|
export default function ConfigStorageInfo() {
|
2020-10-29 18:16:13 +01:00
|
|
|
return (
|
2021-02-01 08:40:39 +01:00
|
|
|
<>
|
2021-02-14 10:30:42 +01:00
|
|
|
<Title>
|
2021-02-13 08:55:59 +01:00
|
|
|
Storage
|
|
|
|
</Title>
|
|
|
|
<p className="description">
|
2021-02-07 04:38:58 +01:00
|
|
|
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/">Storage Documentation</a>.
|
2021-02-02 00:20:26 +01:00
|
|
|
</p>
|
2021-02-13 08:55:59 +01:00
|
|
|
<p className="description">
|
2021-02-07 04:38:58 +01:00
|
|
|
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.
|
2021-02-02 00:20:26 +01:00
|
|
|
</p>
|
2021-02-01 08:40:39 +01:00
|
|
|
<EditStorage />
|
|
|
|
</>
|
2020-10-29 18:22:31 +01:00
|
|
|
);
|
2020-10-29 18:16:13 +01:00
|
|
|
}
|