> For the complete documentation index, see [llms.txt](https://ayakaleaf-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://ayakaleaf-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
```

Hiermee wordt zowel het *Bestanden toevoegen* menu en de *Figuur invoegen* keuzelijst in de werkbalk: het *Bestanden toevoegen* menu kun je een bestand aan je project toevoegen met behulp van de URL, terwijl de *Figuur invoegen* keuzelijst je in staat stelt een afbeelding rechtstreeks vanuit de URL in je document in te voegen.

#### Beveiligingsopmerking

Wanneer gebruikers een link 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 uit deze interne services benaderen.

Om dit te voorkomen, mogen links naar externe bestanden niet verwijzen naar servers waarvan de IP-adressen behoren tot een van de beperkte netwerkbereiken. 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 bronnen niet mogen worden opgehaald. Meestal moet dit het interne netwerk van de organisatie bevatten.
    * 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 publiek toegankelijk moeten zijn. Om toegang tot specifieke bronnen toe te staan, zelfs als het hele netwerk wordt geblokkeerd, is de volgende omgevingsvariabele beschikbaar:

* `OVERLEAF_LINKED_URL_ALLOWED_RESOURCES`
  * Een reguliere expressie die toegestane webbronnen 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 bronnen 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://ayakaleaf-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.
