From ce22895d957a253180f9c38b7a519f5dcd65dbc6 Mon Sep 17 00:00:00 2001 From: dcore94 Date: Wed, 5 Jan 2022 17:38:39 +0100 Subject: [PATCH] prepared for first share --- .muscle/config | 7 ----- conf/pep/config.js | 67 ---------------------------------------------- 2 files changed, 74 deletions(-) delete mode 100644 .muscle/config delete mode 100644 conf/pep/config.js 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" - } - ] - } - ] - } - ] -} -