Skip to content

Commit

Permalink
Clarify port for spring boot login quickstart (#10350)
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmyjames authored Dec 22, 2023
1 parent 12e6af4 commit 2bd892c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions articles/quickstart/webapp/java-spring-boot/01-login.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,12 @@ okta:
issuer: https://${account.namespace}/
client-id: ${account.clientId}
client-secret: YOUR_CLIENT_SECRET

# The sample and instructions above for the callback and logout URL configuration use port 3000.
# If you wish to use a different port, change this and be sure your callback and logout URLs are
# configured with the correct port.
server:
port: 3000
```
## Add Login to Your Application
Expand Down
6 changes: 6 additions & 0 deletions articles/quickstart/webapp/java-spring-boot/interactive.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,12 @@ okta:
issuer: https://${account.namespace}/
client-id: ${account.clientId}
client-secret: YOUR_CLIENT_SECRET

# The sample and instructions above for the callback and logout URL configuration use port 3000.
# If you wish to use a different port, change this and be sure your callback and logout URLs are
# configured with the correct port.
server:
port: 3000
```
## Add login to your application {{{ data-action=code data-code="SecurityConfig.java" }}}
Expand Down

0 comments on commit 2bd892c

Please sign in to comment.