2021-02-01 11:05:09 +03:00
|
|
|
import { Typography } from 'antd';
|
|
|
|
import React from 'react';
|
2021-02-07 06:38:58 +03:00
|
|
|
import EditStorage from '../components/config/edit-storage';
|
2021-02-01 06:45:26 +03:00
|
|
|
|
2021-02-01 10:40:39 +03:00
|
|
|
const { Title } = Typography;
|
2020-10-29 20:16:13 +03:00
|
|
|
|
2021-02-01 10:40:39 +03:00
|
|
|
export default function ConfigStorageInfo() {
|
2020-10-29 20:16:13 +03:00
|
|
|
return (
|
2021-02-01 10:40:39 +03:00
|
|
|
<>
|
2021-02-14 12:45:08 +03:00
|
|
|
<Title>Storage</Title>
|
2021-02-13 10:55:59 +03:00
|
|
|
<p className="description">
|
2021-02-07 06:38:58 +03:00
|
|
|
Owncast supports optionally using external storage providers to distribute your video. Learn
|
|
|
|
more about this by visiting our{' '}
|
2021-03-04 11:54:26 +03:00
|
|
|
<a
|
|
|
|
href="https://owncast.online/docs/storage/?source=admin"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
>
|
2021-02-26 23:38:55 +03:00
|
|
|
Storage Documentation
|
|
|
|
</a>
|
|
|
|
.
|
2021-02-02 02:20:26 +03:00
|
|
|
</p>
|
2021-02-13 10:55:59 +03:00
|
|
|
<p className="description">
|
2021-02-07 06:38:58 +03: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 02:20:26 +03:00
|
|
|
</p>
|
2021-02-01 10:40:39 +03:00
|
|
|
<EditStorage />
|
|
|
|
</>
|
2020-10-29 20:22:31 +03:00
|
|
|
);
|
2020-10-29 20:16:13 +03:00
|
|
|
}
|