2021-02-01 00:05:09 -08:00
|
|
|
import React from 'react';
|
2022-12-27 18:48:21 -08:00
|
|
|
import EditStorage from './EditStorage';
|
2020-10-29 10:16:13 -07:00
|
|
|
|
2023-01-09 20:57:29 -08:00
|
|
|
// eslint-disable-next-line react/function-component-definition
|
2021-01-31 23:40:39 -08:00
|
|
|
export default function ConfigStorageInfo() {
|
2020-10-29 10:16:13 -07:00
|
|
|
return (
|
2021-01-31 23:40:39 -08:00
|
|
|
<>
|
2021-02-12 23:55:59 -08:00
|
|
|
<p className="description">
|
2021-11-27 18:12:20 -08:00
|
|
|
Owncast supports optionally using external storage providers to stream your video. Learn
|
2021-02-06 22:38:58 -05:00
|
|
|
more about this by visiting our{' '}
|
2021-03-04 08:54:26 +00:00
|
|
|
<a
|
|
|
|
href="https://owncast.online/docs/storage/?source=admin"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
>
|
2021-02-26 14:38:55 -06:00
|
|
|
Storage Documentation
|
|
|
|
</a>
|
|
|
|
.
|
2021-02-01 15:20:26 -08:00
|
|
|
</p>
|
2021-02-12 23:55:59 -08:00
|
|
|
<p className="description">
|
2021-02-06 22:38:58 -05: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-01 15:20:26 -08:00
|
|
|
</p>
|
2021-11-27 18:12:20 -08:00
|
|
|
<p className="description">
|
|
|
|
Keep in mind this is for live streaming, not for archival, recording or VOD purposes.
|
|
|
|
</p>
|
2021-01-31 23:40:39 -08:00
|
|
|
<EditStorage />
|
|
|
|
</>
|
2020-10-29 10:22:31 -07:00
|
|
|
);
|
2020-10-29 10:16:13 -07:00
|
|
|
}
|