Skip to content
Permalink
2.20.7
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
# Default REST security configuration.
#
# By default this configuration locks down every rest call. The following is an example of a more
# lax configuration in which read only (GET) access is allowed anonymously:
#
#/**;GET=IS_AUTHENTICATED_ANONYMOUSLY
#/**;POST,DELETE,PUT=ADMIN
#
# The following is an example of a configuration that could be used with the restconfig plugin in
# which only configuration in a specific workspace is restricted:
#
#/rest/workspaces/topp*;GET=ADMIN
#/rest/workspaces/topp/**;GET=ADMIN
#/**;POST,DELETE,PUT=ADMIN
#
/rest/security/**;GET,POST,DELETE,PUT=ROLE_ADMINISTRATOR
/rest/monitor/**;GET=ROLE_ADMINISTRATOR
/rest/geofence/**;GET,POST,DELETE,PUT=ROLE_ADMINISTRATOR
/rest/resource/**;GET,POST,DELETE,PUT=ROLE_ADMINISTRATOR
/rest/imports/**;GET,POST,DELETE,PUT=IS_AUTHENTICATED_FULLY
/rest/br/**;GET,POST,DELETE,PUT=IS_AUTHENTICATED_FULLY
/rest/process/batchdownload/download/**;GET=IS_AUTHENTICATED_ANONYMOUSLY
/rest/printing/**;GET,POST=IS_AUTHENTICATED_ANONYMOUSLY
/rest/about/**;GET,POST,DELETE,PUT=ROLE_ADMINISTRATOR
/**;GET=IS_AUTHENTICATED_ANONYMOUSLY
/**;POST,DELETE,PUT=IS_AUTHENTICATED_FULLY