Closed theav8or closed 5 years ago
@theav8or Thanks for your comment. We are actively investigating and will get back to you shortly.
@theav8or, Thanks for sharing your valuable feedback! Your feedback has been shared with the content owner for further review.
@theav8or Thanks for your feedback, so you want to update the web.config
file to use the keystore file? If so, you could do this with the maven-plugin, just specify what you want to upload and the destination(relative to wwwroot
) and maven plugin will upload these files for you, here is an example.
<plugin>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-webapp-maven-plugin</artifactId>
<version>1.7.0</version>
<configuration>
...
<deployment>
<resources>
<resource>
<directory>${PATH_TO_WEB_CONFIG}</directory>
<includes>
<include>web.config</include>
</includes>
</resource>
<resource>
<directory>${PATH_TO_CERTIFICATE}</directory>
<targetPath>/cer</targetPath> <!-- It will deploy to /wwwroot/cer/-->
<includes>
<include>*.jks</include>
</includes>
</resource>
</resources>
</deployment>
</configuration>
</plugin>
@theav8or, Just checking if the suggestions posted above helps or you need further assistance on this issue.
@theav8or, Since we have not heard back from you we will now proceed to close this thread. If there are further questions regarding this matter, please tag us in your reply and we will gladly continue the discussion.
[Enter feedback here] Cases involving outbound connection SSL binding for Java (Springboot) are fairly common, guide can use a section on keystore configuration that does not require admin privileges:
Document Details
⚠ Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.