This is an automated email from the ASF dual-hosted git repository.

exceptionfactory pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/main by this push:
     new e88d610  NIFI-8700 Corrections/improvements to doc added for default 
HTTPS
e88d610 is described below

commit e88d610da6794a6273075ade2bc16f1dd309c61b
Author: Andrew Lim <[email protected]>
AuthorDate: Mon Jun 14 17:48:50 2021 -0400

    NIFI-8700 Corrections/improvements to doc added for default HTTPS
    
    This closes #5158
    
    Signed-off-by: David Handermann <[email protected]>
---
 README.md                                          |  55 +++++++++++----------
 .../src/main/asciidoc/administration-guide.adoc    |  10 ++--
 nifi-docs/src/main/asciidoc/getting-started.adoc   |   2 +-
 .../asciidoc/images/nifi-flow-authenticated.png    | Bin 134928 -> 145051 bytes
 nifi-docs/src/main/asciidoc/images/nifi-login.png  | Bin 90071 -> 61992 bytes
 5 files changed, 36 insertions(+), 31 deletions(-)

diff --git a/README.md b/README.md
index b1df430..d6d3e1e 100644
--- a/README.md
+++ b/README.md
@@ -159,7 +159,7 @@ Accessing NiFi after accepting the self-signed certificate 
will display the logi
 ![NiFi Login 
Screen](nifi-docs/src/main/asciidoc/images/nifi-login.png?raw=true)
 
 Using the generated credentials, enter the generated username in the `User` 
field
-and the generated password in the `Password` field, then press `LOG IN` to 
access the system.
+and the generated password in the `Password` field, then select `LOG IN` to 
access the system.
 ![NiFi Flow Authenticated 
Screen](nifi-docs/src/main/asciidoc/images/nifi-flow-authenticated.png?raw=true)
 
 ### Configuring
@@ -235,38 +235,39 @@ Registry—a subproject of Apache NiFi—is a complementary 
application that pro
 
 ### Getting Registry Started
 
-1) Build nifi
-    See [Gettin Started](#getting-started) for NiFi
+1) Build NiFi (see [Getting Started for NiFi](#getting-started) )
     
-    or
+or
     
-    Build only the Registry subproject:
-    
-            cd nifi/nifi-registry
-            mvn clean install
+Build only the Registry subproject:
+
+    cd nifi/nifi-registry
+    mvn clean install
+
     
-    If you wish to enable style and license checks, specify the contrib-check 
profile:
-        
-            mvn clean install -Pcontrib-check
+If you wish to enable style and license checks, specify the contrib-check 
profile:
 
-3) Start Registry
+    mvn clean install -Pcontrib-check
 
-        cd 
nifi-registry/nifi-registry-assembly/target/nifi-registry-<VERSION>-bin/nifi-registry-<VERSION>/
-        ./bin/nifi-registry.sh start
-   
-   Note that the application web server can take a while to load before it is 
accessible.   
 
-4) Accessing the application web UI
+2) Start Registry
+
+    cd 
nifi-registry/nifi-registry-assembly/target/nifi-registry-<VERSION>-bin/nifi-registry-<VERSION>/
+    ./bin/nifi-registry.sh start
+
+Note that the application web server can take a while to load before it is 
accessible.   
+
+3) Accessing the application web UI
  
-    With the default settings, the application UI will be available at 
[http://localhost:18080/nifi-registry](http://localhost:18080/nifi-registry) 
+With the default settings, the application UI will be available at 
[http://localhost:18080/nifi-registry](http://localhost:18080/nifi-registry) 
    
-5) Accessing the application REST API
+4) Accessing the application REST API
 
-    If you wish to test against the application REST API, you can access the 
REST API directly. With the default settings, the base URL of the REST API will 
be at `http://localhost:18080/nifi-registry-api`. A UI for testing the REST API 
will be available at 
[http://localhost:18080/nifi-registry-api/swagger/ui.html](http://localhost:18080/nifi-registry-api/swagger/ui.html)
 
+If you wish to test against the application REST API, you can access the REST 
API directly. With the default settings, the base URL of the REST API will be 
at `http://localhost:18080/nifi-registry-api`. A UI for testing the REST API 
will be available at 
[http://localhost:18080/nifi-registry-api/swagger/ui.html](http://localhost:18080/nifi-registry-api/swagger/ui.html)
 
 
-6) Accessing the application logs
+5) Accessing the application logs
 
-    Logs will be available in `logs/nifi-registry-app.log`
+Logs will be available in `logs/nifi-registry-app.log`
 
 ### Database Testing
 
@@ -325,6 +326,8 @@ See https://nifi.apache.org/ for the latest NiFi 
documentation.
 
 See https://nifi.apache.org/minifi and 
https://cwiki.apache.org/confluence/display/MINIFI for the latest 
MiNiFi-specific documentation.
 
+See https://nifi.apache.org/registry for the latest Registry-specific 
documentation.
+
 ## License
 
 Except as otherwise noted this software is licensed under the
@@ -366,9 +369,11 @@ The following provides more details on the included 
cryptographic software:
 Apache NiFi uses BouncyCastle, JCraft Inc., and the built-in
 Java cryptography libraries for SSL, SSH, and the protection
 of sensitive configuration parameters. See
-https://bouncycastle.org/about.html
-http://www.jcraft.com/c-info.html
-https://www.oracle.com/corporate/security-practices/corporate/governance/global-trade-compliance.html
+
+- https://bouncycastle.org/about.html
+- http://www.jcraft.com/c-info.html
+- 
https://www.oracle.com/corporate/security-practices/corporate/governance/global-trade-compliance.html
+
 for more details on each of these libraries cryptography features.
 
 [nifi]: https://nifi.apache.org/
diff --git a/nifi-docs/src/main/asciidoc/administration-guide.adoc 
b/nifi-docs/src/main/asciidoc/administration-guide.adoc
index d2c945a..eb5ecac 100644
--- a/nifi-docs/src/main/asciidoc/administration-guide.adoc
+++ b/nifi-docs/src/main/asciidoc/administration-guide.adoc
@@ -290,20 +290,20 @@ consisting of 32 characters and stored using bcrypt 
hashing.
 
 The default configuration in _nifi.properties_ enables Single User 
authentication:
 
----
+----
 nifi.security.user.login.identity.provider=single-user-provider
----
+----
 
 The default _login-identity-providers.xml_ includes a blank provider 
definition:
 
----
+----
 <provider>
    <identifier>single-user-provider</identifier>
    
<class>org.apache.nifi.authentication.single.user.SingleUserLoginIdentityProvider</class>
    <property name="Username"/>
    <property name="Password"/>
 </provider>
----
+----
 
 The following command can be used to change the Username and Password:
 
@@ -4098,4 +4098,4 @@ Example configuration:
 
    
nifi.nar.library.provider.hdfs2.implementation=org.apache.nifi.nar.hadoop.HDFSNarProvider
    nifi.nar.library.provider.hdfs2.resources=/etc/hadoop/core-site.xml
-   nifi.nar.library.provider.hdfs2.source.directory=/other/dir/for/customNars
\ No newline at end of file
+   nifi.nar.library.provider.hdfs2.source.directory=/other/dir/for/customNars
diff --git a/nifi-docs/src/main/asciidoc/getting-started.adoc 
b/nifi-docs/src/main/asciidoc/getting-started.adoc
index 4543c4a..589da58 100644
--- a/nifi-docs/src/main/asciidoc/getting-started.adoc
+++ b/nifi-docs/src/main/asciidoc/getting-started.adoc
@@ -144,7 +144,7 @@ Accessing NiFi after accepting the self-signed certificate 
will display the logi
 image:nifi-login.png["Login"]
 
 Using the generated credentials, enter the generated username in the `User` 
field
-and the generated password in the `Password` field, then press `LOG IN` to 
access the system.
+and the generated password in the `Password` field, then select `LOG IN` to 
access the system.
 This will bring up the User Interface, which at this point is a blank canvas 
for orchestrating a dataflow:
 
 image:nifi-flow-authenticated.png["New Flow Authenticated"]
diff --git a/nifi-docs/src/main/asciidoc/images/nifi-flow-authenticated.png 
b/nifi-docs/src/main/asciidoc/images/nifi-flow-authenticated.png
index 756c50a..4aa5099 100644
Binary files a/nifi-docs/src/main/asciidoc/images/nifi-flow-authenticated.png 
and b/nifi-docs/src/main/asciidoc/images/nifi-flow-authenticated.png differ
diff --git a/nifi-docs/src/main/asciidoc/images/nifi-login.png 
b/nifi-docs/src/main/asciidoc/images/nifi-login.png
index 9b862cd..cdf92c2 100644
Binary files a/nifi-docs/src/main/asciidoc/images/nifi-login.png and 
b/nifi-docs/src/main/asciidoc/images/nifi-login.png differ

Reply via email to