minor changes - in particular adding note to configuration page that external master fiduciaries are not supported in this release
diff --git a/docs/d-ta-overview.md b/docs/d-ta-overview.md
index b3e1796..921d3b3 100644
--- a/docs/d-ta-overview.md
+++ b/docs/d-ta-overview.md
@@ -34,7 +34,7 @@
 
 3. How can different custodial services provide their own "special security sauce"?
 
-    **Answer:** Plugins
+    **Answer:** [Plugins](dta-details/d-ta-plugins.md)
 
 A more complete view of the Milagro D-TA ecosystem is shown below
 
diff --git a/docs/dta-details/api.md b/docs/dta-details/api.md
index 0f3cc7b..8ff77a8 100644
--- a/docs/dta-details/api.md
+++ b/docs/dta-details/api.md
@@ -13,7 +13,7 @@
 
 ## Testing The API
 
-(This assumes that your local DTA is running on port 5558 as described in the [quick start guide](/docs/dta-details/quickstart)
+(This assumes that your local DTA is running on port 5556 as described in the [quick start guide](/docs/dta-details/quickstart)
 
 Instructions for installing Swagger UI can be found [here](https://github.com/swagger-api/swagger-ui/blob/master/docs/usage/installation.md)
 
diff --git a/docs/dta-details/configuration.md b/docs/dta-details/configuration.md
index d4424f0..cf077e5 100644
--- a/docs/dta-details/configuration.md
+++ b/docs/dta-details/configuration.md
@@ -3,7 +3,10 @@
 title: Configuration
 sidebar_label: Configuration
 ---
-The Milagro D-TA can be configured either by editing its configuration file or using command line flags.
+The Milagro D-TA can be configured either by editing its configuration file or using command line flags.   
+
+:::important running a D-TA as a principal with an external master fiduciary (as described below) is not currently supported but will be in the next release.
+:::
 
 ## Configuration File
 The config file is located in `~/.milagro/config.yaml`
diff --git a/docs/dta-details/quickstart.md b/docs/dta-details/quickstart.md
index 01af21c..041bcaa 100644
--- a/docs/dta-details/quickstart.md
+++ b/docs/dta-details/quickstart.md
@@ -16,11 +16,11 @@
 
 docker build -t milagrodta .
 
-docker run -it -p 5558:5556 milagrodta
+docker run -it -p 5556:5556 milagrodta
 
 ```
 
-Now you can test if the D-TA is running by hitting [http://localhost:5558/v1/status](http://localhost:5558/v1/status)
+Now you can test if the D-TA is running by hitting [http://localhost:5556/v1/status](http://localhost:5556/v1/status)
 
 You should see something like...
 
@@ -45,17 +45,17 @@
 The Safeguard Secret plugin encrypts a string with the public key and decrypts it when the Master Feducuiary returns the secret key.
 
 ```
-docker run -it -p 5558:5556 milagrodta -service safeguardsecret
+docker run -it -p 5556:5556 milagrodta -service safeguardsecret
 ```
 
 **To Run Bitcoin Wallet**
 
 Bitcon Wallet uses the public key to create a Bitcoin address. When you want to spend your bitcoins you can get the secret key from the Master Fiduciary
 ```
-docker run -it -p 5558:5556 milagrodta -service bitcoinwallet
+docker run -it -p 5556:5556 milagrodta -service bitcoinwallet
 ```
 
-You can confirm that the plugins have loaded by hitting [http://localhost:5558/v1/status](http://localhost:5558/v1/status)
+You can confirm that the plugins have loaded by hitting [http://localhost:5556/v1/status](http://localhost:5556/v1/status)
 
 ## Hitting the API
 
@@ -76,7 +76,7 @@
 ### Example - To create a new Identity
 
 ```
-curl -X POST "http://localhost:5558/v1/identity" -H "accept: application/json" -H "Content-Type: application/json" -d "{\"name\":\"thisNode\"}"
+curl -X POST "http://localhost:5556/v1/identity" -H "accept: application/json" -H "Content-Type: application/json" -d "{\"name\":\"thisNode\"}"
 ```