aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/resources/META-INF/securityFilterRules.json
blob: b0315374fa5f6f3733ba85f06da6e63ef83c4aa3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
  "pathFilter": {
    "deniedPaths": [
      {
        "path": "/camunda/api/engine/.*",
        "methods": "*"
      },
      {
        "path": "/camunda/api/cockpit/.*",
        "methods": "*"
      },
      {
        "path": "/camunda/app/tasklist/{engine}/.*",
        "methods": "*"
      },
      {
        "path": "/camunda/app/cockpit/{engine}/.*",
        "methods": "*"
      }
    ],
    "allowedPaths": [
      {
        "path": "/camunda/api/engine/engine/",
        "methods": "GET"
      },
      {
        "path": "/camunda/api/{app:cockpit}/plugin/{engine}/static/.*",
        "methods": "GET"
      },
      {
        "path": "/camunda/api/{app:cockpit}/plugin/{plugin}/{engine}/.*",
        "methods": "*",
        "authorizer": "org.camunda.bpm.webapp.impl.security.filter.EngineRequestAuthorizer"
      },
      {
        "path": "/camunda/api/engine/engine/{engine}/.*",
        "methods": "*",
        "authorizer": "org.camunda.bpm.webapp.impl.security.filter.EngineRequestAuthorizer"
      },
      {
        "path": "/camunda/app/{app:cockpit}/{engine}/.*",
        "methods": "*",
        "authorizer": "org.camunda.bpm.webapp.impl.security.filter.ApplicationRequestAuthorizer"
      },
      {
        "path": "/camunda/app/{app:tasklist}/{engine}/.*",
        "methods": "*",
        "authorizer": "org.camunda.bpm.webapp.impl.security.filter.ApplicationRequestAuthorizer"
      }
    ]
  }
}