joinpeertube/src/views/InclusionPolicy.vue

58 lines
2.5 KiB
Vue

<template>
<main id="inclusion-policy">
<div class="blocks">
<div class="title-block">
<div class="title" v-translate>Inclusion Policy</div>
<p v-translate>All Peertube servers we link to from our server picker commit to the following:</p>
<div class="separator"></div>
</div>
<div class="text-block">
Note: These rules are preliminary, and subject to change. Listed instances do not necessarily follow them yet (in particular rules 3 and 4).
</div>
<div class="text-block">
<div class="title" v-translate>1. Active moderation against racism, sexism, homophobia and transphobia</div>
Users must have the confidence that they are joining a safe space, free from white supremacy, anti-semitism and transphobia of other platforms.
</div>
<div class="text-block">
<div class="title" v-translate>2. Daily backups</div>
It is important for users to have the confidence that a trip over the power cable or a rogue bit flip will not erase all of their data. Having a backup strategy is a basic necessity of providing a public service.
</div>
<div class="text-block">
<div class="title" v-translate>3. At least one other person with emergency access to the server infrastructure</div>
Various circumstances can prevent the original owner of the Mastodon server from answering technical emergencies. For this reason, more than one person must have that capability.
</div>
<div class="text-block">
<div class="title" v-translate>4. Commitment to give users at least 3 months of advance warning in case of shutting down</div>
Sometimes services shut down, it is the cycle of life. But users must have the confidence that their account will not disappear overnight, so that they have time to export their data and find another server.
</div>
<div class="text-block">
If you are a server owner, and your server passes these requirements, you can send an e-mail to [info at peertube dot social] with the subject "Server submission" to be listed on this website.
</div>
<div class="text-block">
This document is based on the <a href="https://joinmastodon.org/covenant">Mastodon Server Covenant</a>
</div>
</div>
</main>
</template>
<style lang="scss">
#inclusion-policy {
.blocks {
margin: 60px auto;
}
.text-block {
margin-top: 30px;
margin-bottom: 30px;
}
}
</style>