> 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/ko/configuration/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/95e6aeddfc76b35bdec1a5734939f149682eb58f" alt=""><figcaption></figcaption></figure>

### 제한된 도메인 등록

제한된 도메인 공개 등록은 다음에서만 사용할 수 있습니다 [ayaka-notes/overleaf-pro](https://github.com/ayaka-notes/overleaf-pro).

이 기능을 활성화하기 전에 사용자가 초대 및 알림을 받을 수 있도록 이메일 전송을 구성하세요. 다음을 참조하세요: [이메일 전송](/on-premises/ko/configuration/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/ko/configuration/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.
