Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify port for spring boot login quickstart #10350

Merged
merged 1 commit into from
Dec 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading