Sync docs from master to gh-pages

This commit is contained in:
buildmaster
2019-11-06 16:46:57 +00:00
parent 30d013e255
commit 6092351013
2 changed files with 52 additions and 2 deletions

View File

@@ -114,7 +114,11 @@ $(addBlockSwitches);
</ul>
</li>
<li><a href="#_serving_alternative_formats">Serving Alternative Formats</a></li>
<li><a href="#_serving_plain_text">Serving Plain Text</a></li>
<li><a href="#_serving_plain_text">Serving Plain Text</a>
<ul class="sectlevel2">
<li><a href="#_decrpyting_plain_text">Decrpyting Plain Text</a></li>
</ul>
</li>
<li><a href="#_embedding_the_config_server">Embedding the Config Server</a></li>
<li><a href="#_push_notifications_and_spring_cloud_bus">Push Notifications and Spring Cloud Bus</a></li>
<li><a href="#_spring_cloud_config_client">Spring Cloud Config Client</a>
@@ -2338,6 +2342,27 @@ So, the preceding example for the <code>default</code> profile could be <code>/f
</tr>
</table>
</div>
<div class="sect2">
<h3 id="_decrpyting_plain_text"><a class="link" href="#_decrpyting_plain_text">Decrpyting Plain Text</a></h3>
<div class="paragraph">
<p>By default, encrypted values in plain text files are not decrypted. In order to enable decryption for plain text files, set <code>spring.cloud.config.server.encrypt.enabled=true</code> and <code>spring.cloud.config.server.encrypt.plainTextEncrypt=true</code> in <code>bootstrap.[yml|properties]</code></p>
</div>
<div class="admonitionblock note">
<table>
<tr>
<td class="icon">
<i class="fa icon-note" title="Note"></i>
</td>
<td class="content">
Decrpyting plain text files is only supported for YAML, JSON, and properties file extensions.
</td>
</tr>
</table>
</div>
<div class="paragraph">
<p>If this feature is enabled, and an unsupported file extention is requested, any encrypted values in the file will not be decrypted.</p>
</div>
</div>
</div>
</div>
<div class="sect1">