Skip to content

Commit 13b9509

Browse files
authored
Merge pull request spring-guides#104 from spring-operator/polish-urls-remaining-master
URL Cleanup
2 parents 693bdcf + d648271 commit 13b9509

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
source "http://rubygems.org"
1+
source "https://rubygems.org"
22

33
gem "guard"
44
gem "guard-shell"

LICENSE.writing.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Except where otherwise noted, this work is licensed under http://creativecommons.org/licenses/by-nd/3.0/
1+
Except where otherwise noted, this work is licensed under https://creativecommons.org/licenses/by-nd/3.0/

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ projects: [spring-security,spring-security-oauth,spring-boot]
1414

1515
This guide shows you how to build a sample app doing various things
1616
with "social login" using https://tools.ietf.org/html/rfc6749[OAuth2]
17-
and http://projects.spring.io/spring-boot/[Spring Boot]. It starts
17+
and https://projects.spring.io/spring-boot/[Spring Boot]. It starts
1818
with a simple, single-provider single-sign on, and works up to a
1919
self-hosted OAuth2 Authorization Server with a choice of
2020
authentication providers (https://developers.facebook.com[Facebook] or

auth-server/README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ users. To get a token on behalf of a user of our app we need to be
190190
able to authenticate the user. If you were watching the logs carefully
191191
when the app started up you would have seen a random password being
192192
logged for the default Spring Boot user (per the
193-
http://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#boot-features-security[Spring
193+
https://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#boot-features-security[Spring
194194
Boot User Guide]). You can use this password to get a token on behalf of the user with id "user":
195195

196196
```

overview.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ that you have at least a Facebook account if you want to log in and
3939
see the content). You can also run all the apps on the command line
4040
using `mvn spring-boot:run` or by building the jar file and running it
4141
with `mvn package` and `java -jar target/*.jar` (per the
42-
http://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#getting-started-first-application-run[Spring
42+
https://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#getting-started-first-application-run[Spring
4343
Boot docs] and other
4444
https://spring.io/guides/gs/spring-boot/[available
4545
documentation]). There is no need to install Maven if you use the

simple/README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ autoconfiguration features in Spring Boot.
99

1010
First we need to create a Spring Boot application,
1111
which can be done in a number of ways. The easiest is to go to
12-
http://start.spring.io and generate an empty project (choosing the
12+
https://start.spring.io and generate an empty project (choosing the
1313
"Web" dependency as starting points). Equivalently do
1414
this on the command line:
1515

0 commit comments

Comments
 (0)