instance-actor.blade.php 1.3 KB

1234567891011121314151617181920212223242526
  1. @extends('site.help.partial.template', ['breadcrumb'=>'Instance Actor'])
  2. @section('section')
  3. <div class="title">
  4. <h3 class="font-weight-bold">Instance Actor</h3>
  5. </div>
  6. <hr>
  7. <p class="lead">We use a special account type known as an Instance Actor to fetch content securely with other servers in the fediverse.</p>
  8. <div class="py-4">
  9. <p class="font-weight-bold h5 pb-3">For Instance Admins</p>
  10. <p class="mb-0">If you are an instance admin that found this URL in a request or profile, this account is used to fetch content from remote instances using signed requests (HTTP Signatures) to enforce domain block compatibility with other instances.</p>
  11. </div>
  12. <hr>
  13. <div class="card bg-primary border-primary" style="box-shadow: none !important;border: 3px solid #08d!important;">
  14. <div class="card-header text-light font-weight-bold h4 p-4 bg-primary">Instance Actor Tips</div>
  15. <div class="card-body bg-white p-3">
  16. <ul class="pt-3">
  17. <li class="lead mb-4">The Instance Actor will not appear in search results.</li>
  18. <li class="lead mb-4">You cannot follow an Instance Actor.</li>
  19. <li class="lead mb-4">The Instance Actor does not follow accounts.</li>
  20. <li class="lead">The Instance Actor account does not post or share content from users.</li>
  21. </ul>
  22. </div>
  23. </div>
  24. @endsection