diff --git a/.muscle/config b/.muscle/config deleted file mode 100644 index 9b176b0..0000000 --- a/.muscle/config +++ /dev/null @@ -1,7 +0,0 @@ -{ - "bitbucket" : { - "client-id" : "jFZ9g7zsQxHYt7f57s", - "client-secret" : "#######" - } -} - diff --git a/conf/pep/config.js b/conf/pep/config.js deleted file mode 100644 index e961ddb..0000000 --- a/conf/pep/config.js +++ /dev/null @@ -1,67 +0,0 @@ -export default { config }; - -var config = { - "pep-credentials" : "########", - "hosts" : [ - { - "host": "d4science-cdn", - "audience" : "d4science-cdn", - "allow-basic-auth" : false, - "paths" : [ - { - "name" : "Default Resource", - "path" : "^/d4s-cdn/config/.+$", - "methods" : [ - { - "method" : "GET", - "scopes" : ["get"] - } - ] - }, - { - "name" : "Default Resource", - "path" : "^/d4s-cdn/visuals/.*$", - "methods" : [ - { - "method" : "GET" - } - ] - }, - { - "name" : "Default Resource", - "path" : "^/d4s-cdn/(?!visuals)(?!config)(?!services).+$", - "methods" : [ - { - "method" : "GET" - } - ] - }, - { - "name" : "Default Resource", - "path" : "^/d4s-cdn/services/.*$", - "methods" : [ - { - "method" : "OPTIONS" - }, - { - "method" : "POST" - }, - { - "method" : "HEAD" - }, - { - "method" : "PUT" - }, - { - "method" : "DELETE" - }, - { - "method" : "GET" - } - ] - } - ] - } - ] -} -