NIFI-12617 Set default nifi.web.https.host to localhost

This closes #8486

Signed-off-by: David Handermann <exceptionfactory@apache.org>
This commit is contained in:
EndzeitBegins 2024-03-08 16:03:46 +01:00 committed by exceptionfactory
parent 8ad3c731da
commit fabf6bf536
No known key found for this signature in database
GPG Key ID: 29B6A52D2AAE8DBA
2 changed files with 2 additions and 2 deletions

View File

@ -3839,7 +3839,7 @@ For example, to provide two additional network interfaces, a user could also spe
`nifi.web.http.network.interface.eth1=eth1` +
+
Providing three total network interfaces, including `nifi.web.http.network.interface.default`.
|`nifi.web.https.host`|The HTTPS host. The default value is `127.0.0.1`.
|`nifi.web.https.host`|The HTTPS host. The default value is `localhost`.
|`nifi.web.https.port`|The HTTPS port. The default value is `8443`.
|`nifi.web.https.port.forwarding`|Same as `nifi.web.http.port.forwarding`, but with HTTPS for secure communication. It is blank by default.
|`nifi.web.https.ciphersuites.include`|Cipher suites used to initialize the SSLContext of the Jetty HTTPS port. If unspecified, the runtime SSLContext defaults are used.

View File

@ -121,7 +121,7 @@
<nifi.web.http.host />
<nifi.web.http.port />
<nifi.web.http.network.interface.default />
<nifi.web.https.host>127.0.0.1</nifi.web.https.host>
<nifi.web.https.host>localhost</nifi.web.https.host>
<nifi.web.https.port>8443</nifi.web.https.port>
<nifi.web.https.network.interface.default />
<nifi.web.https.application.protocols>h2 http/1.1</nifi.web.https.application.protocols>