> For the complete documentation index, see [llms.txt](https://overleaf-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://overleaf-pro.ayaka.space/on-premises/nl/configuratie/overleaf-toolkit/public-access.md).

# Openbare toegang

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

* Deel een projectlink met gasten
* Sta gebruikers toe zichzelf 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 deelbare projectlink verkrijgen, **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 beide onderstaande 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` maakt anoniem lezen/schrijven op via een link gedeelde projecten mogelijk.

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

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 verifieert 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, voeg 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 ga naar `/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).

Voordat u dit inschakelt, configureert u e-mailbezorging zodat gebruikers uitnodigingen en meldingen kunnen ontvangen. Zie [E-mailbezorging](/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 zich te laten 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://overleaf-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.
