Skip to content

Commit cf2b0bc

Browse files
committed
Use HTTPS in YAML exmaple
See gh-16316
1 parent 35572b6 commit cf2b0bc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -558,20 +558,20 @@ For example, the following YAML document:
558558
----
559559
environments:
560560
dev:
561-
url: http://dev.example.com
561+
url: https://dev.example.com
562562
name: Developer Setup
563563
prod:
564-
url: http://another.example.com
564+
url: https://another.example.com
565565
name: My Cool App
566566
----
567567

568568
Would be transformed into these properties:
569569

570570
[source,properties,indent=0]
571571
----
572-
environments.dev.url=http://dev.example.com
572+
environments.dev.url=https://dev.example.com
573573
environments.dev.name=Developer Setup
574-
environments.prod.url=http://another.example.com
574+
environments.prod.url=https://another.example.com
575575
environments.prod.name=My Cool App
576576
----
577577

0 commit comments

Comments
 (0)