> 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/es/configuracion/overleaf-toolkit/public-access.md).

# Acceso público

Puede ofrecer acceso a su instancia de Overleaf de dos maneras:

* Compartir un enlace del proyecto con invitados
* Permitir que los usuarios se registren por sí mismos (solo disponible en [ayaka-notes/overleaf-pro](https://github.com/ayaka-notes/overleaf-pro))

### Acceso de invitados

{% hint style="info" %}
De forma predeterminada, incluso si un usuario obtiene un enlace para compartir un proyecto, debe **iniciar sesión** antes de poder unirse a una sesión colaborativa de edición del proyecto.
{% endhint %}

Para permitir el acceso anónimo a proyectos compartidos mediante enlace, establezca ambas variables siguientes:

{% 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` habilita la lectura/escritura anónima en proyectos compartidos mediante enlace.

`OVERLEAF_ALLOW_PUBLIC_ACCESS` impide que los usuarios no autenticados sean redirigidos a la página de inicio de sesión.

Vuelva a crear los contenedores con `bin/up`. Luego abra una URL de enlace compartido en una ventana privada.

### Registro público

El registro público solo está disponible en [ayaka-notes/overleaf-pro](https://github.com/ayaka-notes/overleaf-pro).

{% hint style="danger" %}
Tenga en cuenta que, una vez que habilite el registro público, **cualquiera** con acceso a su instancia de Overleaf puede registrarse como usuario.

El proceso de registro no verifica las direcciones de correo electrónico, así que utilícelo solo en una intranet o en un entorno de confianza, o desactívelo cuando ya no necesite el registro.
{% endhint %}

De forma predeterminada, ni Community Edition ni Overleaf Pro permiten el registro público.

Para habilitarlo, añada esto a `config/variables.env`:

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

```dotenv
OVERLEAF_ALLOW_PUBLIC_REGISTRATION=true
```

{% endcode %}

Vuelva a crear los contenedores con `bin/up`.

Luego haga clic en **Registrarse** o visite `/register`.

<figure><img src="/files/868f92e0d84f7557ca1b20003f6ccead6948a335" alt=""><figcaption></figcaption></figure>

### Registro con dominio limitado

El registro público con dominio limitado solo está disponible en [ayaka-notes/overleaf-pro](https://github.com/ayaka-notes/overleaf-pro).

Antes de habilitar esto, configure la entrega de correo electrónico para que los usuarios puedan recibir invitaciones y notificaciones. Consulte [Entrega de correo electrónico](/on-premises/es/configuracion/overleaf-toolkit/email-delivery.md).

Luego añada la siguiente línea a `config/variables.env`:

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

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

{% endcode %}

`OVERLEAF_ALLOW_PUBLIC_REGISTRATION` puede configurarse como:

* `true` para permitir que cualquiera que pueda acceder al sitio se registre
* `@example.domain` para restringir el registro a correos electrónicos de ese dominio


---

# 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/es/configuracion/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.
