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

# الوصول العام

يمكنك إتاحة الوصول إلى نسخة Overleaf الخاصة بك بطريقتين:

* مشاركة رابط مشروع مع الضيوف
* السماح للمستخدمين بالتسجيل الذاتي (متاح فقط في [ayaka-notes/overleaf-pro](https://github.com/ayaka-notes/overleaf-pro))

### وصول الضيف

{% hint style="info" %}
افتراضيًا، حتى إذا حصل المستخدم على رابط مشاركة المشروع، فيجب عليه **تسجيل الدخول** قبل أن يتمكن من الانضمام إلى جلسة تحرير تعاونية للمشروع.
{% endhint %}

للسماح بالوصول المجهول للمشاريع المشتركة عبر الرابط، اضبط المتغيرين أدناه:

{% 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` يتيح القراءة/الكتابة المجهولة على المشاريع المشتركة عبر الرابط.

`OVERLEAF_ALLOW_PUBLIC_ACCESS` يمنع إعادة توجيه المستخدمين غير المصادق عليهم إلى صفحة تسجيل الدخول.

أعد إنشاء الحاويات باستخدام `bin/up`. ثم افتح عنوان URL لمشاركة الرابط في نافذة خاصة.

### التسجيل العام

التسجيل العام متاح فقط في [ayaka-notes/overleaf-pro](https://github.com/ayaka-notes/overleaf-pro).

{% hint style="danger" %}
يرجى ملاحظة أنه بمجرد تمكين التسجيل العام، **أي شخص** يمكنه الوصول إلى نسخة Overleaf الخاصة بك أن يسجل كمستخدم.

لا تتحقق عملية التسجيل من عناوين البريد الإلكتروني، لذا يرجى استخدامها فقط على شبكة داخلية أو في بيئة موثوقة، أو تعطيلها عندما لا تعود بحاجة إلى التسجيل.
{% endhint %}

افتراضيًا، لا تسمح كلٌّ من Community Edition وOverleaf Pro بالتسجيل العام.

لتمكينه، أضف هذا إلى `config/variables.env`:

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

```dotenv
OVERLEAF_ALLOW_PUBLIC_REGISTRATION=true
```

{% endcode %}

أعد إنشاء الحاويات باستخدام `bin/up`.

ثم انقر على **التسجيل** أو زر `/register`.

<figure><img src="/files/b10e41ed18078781271bfad9488277b74f004f20" alt=""><figcaption></figcaption></figure>

### التسجيل باستخدام نطاق محدود

التسجيل العام بنطاق محدود متاح فقط في [ayaka-notes/overleaf-pro](https://github.com/ayaka-notes/overleaf-pro).

قبل تفعيل هذا، قم بإعداد تسليم البريد الإلكتروني حتى يتمكن المستخدمون من تلقي الدعوات والإشعارات. راجع [تسليم البريد الإلكتروني](/on-premises/ar/aliadadat/overleaf-toolkit/email-delivery.md).

ثم أضف السطر التالي إلى `config/variables.env`:

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

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

{% endcode %}

`OVERLEAF_ALLOW_PUBLIC_REGISTRATION` يمكن ضبطه على:

* `true` للسماح لأي شخص يمكنه الوصول إلى الموقع بالتسجيل
* `@example.domain` لتقييد التسجيل على عناوين البريد الإلكتروني في ذلك النطاق


---

# 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/ar/aliadadat/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.
