Reorganize admin pages and consolidate some sections. For #1904

This commit is contained in:
Gabe Kangas
2022-12-27 18:48:21 -08:00
parent 389ba36f15
commit 5a41f4a1ea
15 changed files with 123 additions and 87 deletions

View File

@@ -0,0 +1,30 @@
import React from 'react';
import EditStorage from './EditStorage';
export default function ConfigStorageInfo() {
return (
<>
<p className="description">
Owncast supports optionally using external storage providers to stream 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>
<p className="description">
Keep in mind this is for live streaming, not for archival, recording or VOD purposes.
</p>
<EditStorage />
</>
);
}