Dispatcher will not deny content paths
We have one instance of AEM 6.2 running an external facing website. We will call it " sitea " external
We are in the process of adding an internal facing site that will be served from the same AEM instance. We will call that site "siteb" internal
We have an external facing webserver and dispatcher configuration as well as an internal webserver and dispatcher configuration
We are trying to deny access to any paths to site b internal on the external dispatcher it is not working.
#/0022 { /type "allow" /url "/content/*" } # disable this rule to allow mapped content only
/0022 { /type "allow" /url "/content/sitea/*" } # disable this rule to allow mapped content only
/0023 { /type "allow" /url "/etc/designs/sitea/*" }
/0024 { /type "allow" /url "/content/dam/sitea/*" }
# Deny access to internal
/0029 { /type "deny" /url "/content/siteb/*" } # disable this rule to allow mapped content only
/0030 { /type "deny" /url "/etc/designs/siteb/*" }
Please advise