> For the complete documentation index, see [llms.txt](https://docs.workflowgen.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.workflowgen.com/docker-fr/noms-de-domaine-personnaliseees.md).

# Noms de domaine personnalisés

## Aperçu

Cette section décrit certaines manières de configurer les noms de domaine dans Docker.

{% hint style="info" %}
Dans le conteneur WorkflowGen, pour configurer un nom de domaine, vous pouvez transmettre la variable d'environnement `WFGEN_APP_SETTING_ApplicationUrl=https://somedomain.com/wfgen`.
{% endhint %}

## Noms de domaine internes

Dans Docker, il existe un DNS interne qui gère les noms de domaine des conteneurs et des ordinateurs. Vous pouvez facilement configurer un nom de domaine interne pour chaque conteneur en transmettant des paramètres simples. Consultez la page suivante (disponible en anglais uniquement) pour plus d'informations :

* [Networking overview](https://docs.docker.com/config/containers/container-networking/)

## Noms de domaine destinés au public

Pour les noms de domaine publics, vous aurez généralement besoin d'un service externe (par exemple, NameCheap ou AWS Route 53) qui vend des noms de domaine, puis configurez ce service pour qu'il pointe vers l'adresse IP publique des conteneurs destinés au public.

### Obtenir une adresse IP publique

Tout ce que vous devez faire est d'exposer le port du conteneur (ou du service) dont vous avez besoin et il sera disponible publiquement.

{% hint style="info" %}
Vous devez configurer les nœuds frontaux manuellement avec l'adresse IP que vous possédez. Aucun équilibreur de charge n'est créé automatiquement.
{% endhint %}

```
docker container run `
    # ...
    -p 80:80 `
    # ...
    advantys/workflowgen:9.3.1-win-ltsc2019
```

{% hint style="info" %}
Si vous utilisez une autre version de WorkflowGen, remplacez `9.3.1` dans la commande ci-dessus par votre numéro de version.
{% endhint %}

Cela exposera le port `80` du conteneur au port `80` de l'hôte. L'adresse IP publique est celle de l'hôte Docker.


---

# 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://docs.workflowgen.com/docker-fr/noms-de-domaine-personnaliseees.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.
