Commit cf2b0bc8 authored by Andy Wilkinson's avatar Andy Wilkinson

Use HTTPS in YAML exmaple

See gh-16316
parent 35572b6a
...@@ -558,10 +558,10 @@ For example, the following YAML document: ...@@ -558,10 +558,10 @@ For example, the following YAML document:
---- ----
environments: environments:
dev: dev:
url: http://dev.example.com url: https://dev.example.com
name: Developer Setup name: Developer Setup
prod: prod:
url: http://another.example.com url: https://another.example.com
name: My Cool App name: My Cool App
---- ----
...@@ -569,9 +569,9 @@ Would be transformed into these properties: ...@@ -569,9 +569,9 @@ Would be transformed into these properties:
[source,properties,indent=0] [source,properties,indent=0]
---- ----
environments.dev.url=http://dev.example.com environments.dev.url=https://dev.example.com
environments.dev.name=Developer Setup environments.dev.name=Developer Setup
environments.prod.url=http://another.example.com environments.prod.url=https://another.example.com
environments.prod.name=My Cool App environments.prod.name=My Cool App
---- ----
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment