diff --git a/docs/reference/configuration/uri.md b/docs/reference/configuration/uri.md index ba83d3de1..2798c2266 100644 --- a/docs/reference/configuration/uri.md +++ b/docs/reference/configuration/uri.md @@ -4,20 +4,21 @@ sidebar_position: 8 # `network` -Definiert die IP Adresse bzw. den Host Namen und den Port, auf welchem die Web Oberfläche erreicht werden soll. +Defines the IP address or hostname and port on which the web interface should be accessed. **Beispiel**: ```yaml network: - # schema is the HTTP schema - # setting to `https` does not enable https, it only changes the way URLs are generated - schema: http + # port is the listening port for UI and api + # evcc will listen on all available interfaces + port: 7070 # host is the hostname or IP address # if the host name contains a `.local` suffix, the name will be announced on MDNS # docker: MDNS announcements don't work. host must be set to the docker host's name. host: evcc.local - # port is the listening port for UI and api - # evcc will listen on all available interfaces - port: 7070 + # externalUrl is the URL you use to access evcc in your browser + # used for autodiscovery by the evcc app and by services/devices connecting to evcc + # if you're running evcc behind a reverse proxy, use that URL, e.g. "https://evcc.example.com" (note: ensure you add proper authentication) + externalUrl: https://evcc.local ``` diff --git a/i18n/en/docusaurus-plugin-content-docs/current/reference/configuration/uri.md b/i18n/en/docusaurus-plugin-content-docs/current/reference/configuration/uri.md index 90cf41ce3..752f9b6ad 100644 --- a/i18n/en/docusaurus-plugin-content-docs/current/reference/configuration/uri.md +++ b/i18n/en/docusaurus-plugin-content-docs/current/reference/configuration/uri.md @@ -20,4 +20,8 @@ network: # port is the listening port for UI and api # evcc will listen on all available interfaces port: 7070 + # externalUrl is the URL you use to access evcc in your browser + # used for autodiscovery by the evcc app and by services/devices connecting to evcc + # if you're running evcc behind a reverse proxy, use that URL, e.g. "https://evcc.example.com" (requires authentication at the proxy) + externalUrl: https://evcc.local ```