> 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/external-url.md).

# Externe URL

### "Van externe URL"-functie

Om de ["Van externe URL"](https://www.overleaf.com/learn/how-to/How_to_upload_a_file_using_an_external_URL) functie moet de variabele `ENABLED_LINKED_FILE_TYPES` moet bevatten `url` type:

```
ENABLED_LINKED_FILE_TYPES=project_file,project_output_file,url
```

Dit breidt zowel het *Bestanden toevoegen* menu en de *Figuur invoegen* keuzelijst in de werkbalk: de *Bestanden toevoegen* menu kunt u een bestand aan uw project toevoegen met behulp van de URL ervan, terwijl de *Figuur invoegen* keuzelijst u een afbeelding rechtstreeks vanuit de URL in uw document kunt invoegen.

#### Beveiligingsmelding

Wanneer gebruikers een koppeling naar een extern bestand aan hun projecten toevoegen, wordt het bestand opgehaald namens de server waarop Overleaf is geïnstalleerd.

Als de Overleaf-server wordt gehost binnen een privénetwerk dat ook interne HTTP-servers bevat (bedoeld alleen voor intern gebruik), kan een gebruiker met toegang tot Overleaf mogelijk gegevens van deze interne services openen.

Om dit te voorkomen, mogen koppelingen naar externe bestanden niet verwijzen naar servers waarvan de IP-adressen tot een van de beperkte netwerkbereiken behoren. Dit zijn:

* `127.0.0.0/8` (loopback)
* `169.254.0.0/16` (link-local)
* `10.0.0.0/8` (privénetwerk)
* `172.16.0.0/12` (privénetwerk)
* `192.168.0.0/16` (privénetwerk)

Daarnaast wordt de volgende omgevingsvariabele geïntroduceerd:

* `OVERLEAF_LINKED_URL_BLOCKED_NETWORKS`
  * Een door spaties gescheiden lijst van netwerken in CIDR-notatie waaruit externe resources niet mogen worden opgehaald. Gewoonlijk moet dit het interne netwerk van de organisatie omvatten.
    * Voorbeeld: `OVERLEAF_LINKED_URL_BLOCKED_NETWORKS=123.123.0.0/16 124.124.124.0/24`

In veel organisaties kunnen servers binnen het interne netwerk echter ook gegevens hosten die openbaar toegankelijk zouden moeten zijn. Om toegang tot specifieke resources toe te staan, zelfs als het volledige netwerk is geblokkeerd, wordt de volgende omgevingsvariabele aangeboden:

* `OVERLEAF_LINKED_URL_ALLOWED_RESOURCES`
  * Een reguliere expressie die toegestane webresources definieert waaruit externe bestanden mogen worden opgehaald. Als een URL overeenkomt met deze reguliere expressie, wordt toegang ertoe verleend, zelfs als het netwerk anders is geblokkeerd.
    * Voorbeeld: om URL's zoals `https://www.example.com/~john/pictures/frog.jpg` en `http://www.example.com/public/whatever/lit.bib`:

      `OVERLEAF_LINKED_URL_ALLOWED_RESOURCES=^https?://www\.example\.com/(?:~[^/]+|public)(?:/.*)?`
    * Voorbeeld: om URL's zoals `http://www.example.com/private/whatever/file`, terwijl alle andere resources die niet in de `privé` subboom:

      `OVERLEAF_LINKED_URL_ALLOWED_RESOURCES=^https?://www\.example\.com/(?!private)(?:.*)`<br>


---

# 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/external-url.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.
