|
| 1 | +server: |
| 2 | + ssl: |
| 3 | + enabled: true |
| 4 | + key-store-type: PKCS12 |
| 5 | + key-store: classpath:keystore/keystore.p12 |
| 6 | + key-store-password: ${KEY_STORE_PASSWORD} |
| 7 | + protocol: TLSv1.3 |
| 8 | + enabled-protocols: TLSv1.3 |
| 9 | +spring: |
| 10 | + cloud: |
| 11 | + gateway: |
| 12 | + routes: |
| 13 | + |
| 14 | + - id: get-authik-openapi-api-yml |
| 15 | + uri: https://authik:8080 |
| 16 | + predicates: |
| 17 | + - Method=GET |
| 18 | + - Path=/openapi/authik/api.yml |
| 19 | + filters: |
| 20 | + - RewritePath=/openapi/authik/api.yml, /openapi/api.yml |
| 21 | + |
| 22 | + - id: get-matchmaker-openapi-api-yml |
| 23 | + uri: https://matchmaker:8080 |
| 24 | + predicates: |
| 25 | + - Method=GET |
| 26 | + - Path=/openapi/matchmaker/api.yml |
| 27 | + filters: |
| 28 | + - RewritePath=/openapi/matchmaker/api.yml, /openapi/api.yml |
| 29 | + |
| 30 | + - id: get-people-openapi-api-yml |
| 31 | + uri: https://people:8080 |
| 32 | + predicates: |
| 33 | + - Method=GET |
| 34 | + - Path=/openapi/people/api.yml |
| 35 | + filters: |
| 36 | + - RewritePath=/openapi/people/api.yml, /openapi/api.yml |
| 37 | + |
| 38 | + - id: put-authik-auth-telegram-web-app |
| 39 | + uri: https://authik:8080 |
| 40 | + predicates: |
| 41 | + - Method=PUT |
| 42 | + - Path=/api/auth/telegram/web-app |
| 43 | + |
| 44 | + - id: get-matchmaker-suggestions |
| 45 | + uri: https://matchmaker:8080 |
| 46 | + predicates: |
| 47 | + - Method=GET |
| 48 | + - Path=/api/suggestions |
| 49 | + |
| 50 | + - id: post-matchmaker-people-attitudes-incoming |
| 51 | + uri: https://matchmaker:8080 |
| 52 | + predicates: |
| 53 | + - Method=POST |
| 54 | + - Path=/api/people/*/attitudes/incoming/* |
| 55 | + |
| 56 | + - id: delete-matchmaker-attitudes |
| 57 | + uri: https://matchmaker:8080 |
| 58 | + predicates: |
| 59 | + - Method=DELETE |
| 60 | + - Path=/api/attitudes |
| 61 | + |
| 62 | + - id: get-matchmaker-people-matches |
| 63 | + uri: https://matchmaker:8080 |
| 64 | + predicates: |
| 65 | + - Method=GET |
| 66 | + - Path=/api/people/{person_id}/matches |
| 67 | + |
| 68 | + - id: get-people-person-id |
| 69 | + uri: https://people:8080 |
| 70 | + predicates: |
| 71 | + - Method=GET |
| 72 | + - Path=/api/people/* |
| 73 | + |
| 74 | + - id: delete-people-person-id |
| 75 | + uri: https://people:8080 |
| 76 | + predicates: |
| 77 | + - Method=DELETE |
| 78 | + - Path=/api/people/* |
| 79 | + |
| 80 | + - id: patch-people-person-id |
| 81 | + uri: https://people:8080 |
| 82 | + predicates: |
| 83 | + - Method=PATCH |
| 84 | + - Path=/api/people/* |
| 85 | + |
| 86 | + - id: get-people-faculties |
| 87 | + uri: https://people:8080 |
| 88 | + predicates: |
| 89 | + - Method=GET |
| 90 | + - Path=/api/faculties |
| 91 | + |
| 92 | + - id: get-people-locations |
| 93 | + uri: https://people:8080 |
| 94 | + predicates: |
| 95 | + - Method=GET |
| 96 | + - Path=/api/locations |
| 97 | + |
| 98 | +springdoc: |
| 99 | + swagger-ui: |
| 100 | + path: /swagger-ui.html |
| 101 | + urls: |
| 102 | + - name: authik |
| 103 | + url: openapi/authik/api.yml |
| 104 | + - name: matchmaker |
| 105 | + url: openapi/matchmaker/api.yml |
| 106 | + - name: people |
| 107 | + url: openapi/people/api.yml |
0 commit comments