Skip to content
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
13 changes: 13 additions & 0 deletions src/main/resources/application-local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,19 @@ spring:
filters:
- AuthenticationFilter

- id: reaction-private
uri: http://localhost:8083
predicates:
- name: Path
args:
patterns:
- /v1/likes/{targetType}/{targetId}
- /v1/likes/{targetType}
- /v1/bookmarks/{targetType}/{targetId}
- /v1/bookmarks/{targetType}
filters:
- AuthenticationFilter

app:
user-service:
url: http://localhost:8081
13 changes: 13 additions & 0 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,19 @@ spring:
filters:
- AuthenticationFilter

- id: reaction-private
uri: http://reaction-service:8083
predicates:
- name: Path
args:
patterns:
- /v1/likes/{targetType}/{targetId}
- /v1/likes/{targetType}
- /v1/bookmarks/{targetType}/{targetId}
- /v1/bookmarks/{targetType}
filters:
- AuthenticationFilter

- id: image-public
uri: http://image-service:8082
predicates:
Expand Down
Loading