> For the complete documentation index, see [llms.txt](https://ayakaleaf-pro.ayaka.space/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ayakaleaf-pro.ayaka.space/on-premises/nl/configuratie/overleaf-toolkit/public-access.md).

# Publieke toegang

U kunt op twee manieren toegang bieden tot uw Overleaf-instantie:

* Deel een projectlink met gasten
* Sta gebruikers toe zich zelf te registreren (alleen beschikbaar in [ayaka-notes/overleaf-pro](https://github.com/ayaka-notes/overleaf-pro))

### Gasttoegang

{% hint style="info" %}
Standaard moeten gebruikers, zelfs als ze een link voor het delen van een project hebben verkregen, **inloggen** voordat ze kunnen deelnemen aan een gezamenlijke projectsessie voor bewerken.
{% endhint %}

Om anonieme toegang voor via een link gedeelde projecten toe te staan, stelt u de onderstaande twee variabelen in:

{% code title="config/variables.env" %}

```dotenv
OVERLEAF_ALLOW_ANONYMOUS_READ_AND_WRITE_SHARING=true
OVERLEAF_ALLOW_PUBLIC_ACCESS=true
```

{% endcode %}

`OVERLEAF_ALLOW_ANONYMOUS_READ_AND_WRITE_SHARING` schakelt anoniem lezen/schrijven in voor via een link gedeelde projecten.

`OVERLEAF_ALLOW_PUBLIC_ACCESS` voorkomt dat niet-geauthenticeerde gebruikers worden doorgestuurd naar de inlogpagina.

Maak containers opnieuw aan met `bin/up`. Open vervolgens een URL voor linkdelen in een privévenster.

### Openbare registratie

Openbare registratie is alleen beschikbaar in [ayaka-notes/overleaf-pro](https://github.com/ayaka-notes/overleaf-pro).

{% hint style="danger" %}
Houd er rekening mee dat zodra u openbare registratie inschakelt, **iedereen** met toegang tot uw Overleaf-instantie zich als gebruiker kan registreren.

Het registratieproces controleert geen e-mailadressen, dus gebruik het alleen op een intranet of in een vertrouwde omgeving, of schakel het uit wanneer u registratie niet langer nodig hebt.
{% endhint %}

Standaard staat noch de Community Edition noch Overleaf Pro openbare registratie toe.

Om dit in te schakelen, voegt u dit toe aan `config/variables.env`:

{% code title="config/variables.env" %}

```dotenv
OVERLEAF_ALLOW_PUBLIC_REGISTRATION=true
```

{% endcode %}

Maak containers opnieuw aan met `bin/up`.

Klik vervolgens op **Registreren** of bezoek `/register`.

<figure><img src="/files/52366a2693e126c414b6a8f02e60ab2e62276ae5" alt=""><figcaption></figcaption></figure>

### Registratie met beperkt domein

Openbare registratie met beperkt domein is alleen beschikbaar in [ayaka-notes/overleaf-pro](https://github.com/ayaka-notes/overleaf-pro).

Configureer vóór het inschakelen hiervan e-mailbezorging zodat gebruikers uitnodigingen en meldingen kunnen ontvangen. Zie [E-mailaflevering](/on-premises/nl/configuratie/overleaf-toolkit/email-delivery.md).

Voeg vervolgens de volgende regel toe aan `config/variables.env`:

{% code title="config/variables.env" overflow="wrap" %}

```dotenv
OVERLEAF_ALLOW_PUBLIC_REGISTRATION=@example.domain
```

{% endcode %}

`OVERLEAF_ALLOW_PUBLIC_REGISTRATION` kan worden ingesteld op:

* `true` om iedereen die de site kan bereiken toe te staan zich te registreren
* `@example.domain` om registratie te beperken tot e-mails in dat domein


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://ayakaleaf-pro.ayaka.space/on-premises/nl/configuratie/overleaf-toolkit/public-access.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
