diff options
Diffstat (limited to 'src/routes/aup/+page.svelte')
| -rw-r--r-- | src/routes/aup/+page.svelte | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/src/routes/aup/+page.svelte b/src/routes/aup/+page.svelte new file mode 100644 index 0000000..767ee2d --- /dev/null +++ b/src/routes/aup/+page.svelte @@ -0,0 +1,83 @@ +<svelte:head> + <title>Crunched - Acceptable Use Policy</title> +</svelte:head> + +<article> + <h1 class="text-3xl">Crunched - Acceptable Use Policy</h1> + <p> + The Neobot Verein does our best to provide rules limited to preserving our + morality, integrity, reliability and legality of our services.<br /> + We kindly request you follow the following rules: + </p> + <ol class="pl-4 list-decimal"> + <li>No pornography involving minors - real or fictional.</li> + <li>No crypto mining, please.</li> + <li> + No training LLMs. Only run them if their resource usage over time is + similar to any other server we'd see. + </li> + <li> + No hosting black-hat phishing sites or command and control (C&C) servers. + No launching (D)DoS attacks from our infrastructure. No outgoing spam. + </li> + <li> + No Tor Exit Nodes/Open Proxies/i2p Outproxies. Sorry, we don't want the + feds knocking on our door. + </li> + <li>Make an attempt to not have the server wide open for any attacker.</li> + <li> + Be reasonable with resource usage. We don't want to start needing to limit + network interfaces. + </li> + <li> + Try not to get <a + href="https://www.init7.net/de/kleingedrucktes/gtc-init7-2024.pdf" + target="_blank" + rel="noopener noreferrer">init7</a + > + to contact us about your use of our services. + <span class="opacity-70 text-sm">(Link goes to their ToS)</span> + </li> + <li> + Follow regional laws in Zurich, Switzerland - atleast in regards to the + contents hosted here.<br /> + We dislike the feds knocking on our door just as much as anyone else. + </li> + </ol> + <p class="mt-2"> + Tl;dr: Abide by the same general rules any other provider provides. Try not + to violate regional laws in Zurich, Switzerland. + </p> + <h2 class="text-2xl mt-4">Excessive Resource Use Policy</h2> + <p> + In case of excessive resource use, we will try to inform you prior to taking + action. However, if the resource use severely affects other users, or the + server's operations as a whole, we may take actions without prior notice. + </p> + <h2 class="text-2xl mt-4">UGC</h2> + <p> + If you allow user-generated content, you should really try to make sure you + moderate it so illegal material is removed before any complaints reach us. + </p> + <p class="mt-2"> + If you clearly state that your site hosts user-generated content, law + enforcement and child-protection agencies will typically contact you first + rather than contacting us, so ensure you put easily-accessible contact + information. + </p> + <h2 class="text-2xl mt-4">Contact</h2> + <p> + As a user, due to the invite-only nature of this service, if you have + questions regarding the AUP, please just contact the creature that sent you + here. Only admins can generate invites, as of now. + </p> + <p class="mt-2"> + Are you a law enforcement agency and need contact with us? Contact us at <br + /><span class="text-sm p-1 bg-black/10">law-enforcement</span>[at]<span + class="text-sm p-1 bg-black/10">neobot</span + >[dot]<span class="text-sm p-1 bg-black/10">systems</span><br /> + Note that if you are requesting user data, unless you have a legally valid Durchsuchungsbefehl + (or similar) from the Staatsanwaltschaft, we are very likely to deny any requests + for data belonging to our users. + </p> +</article> |