├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── bin └── mallorca ├── ci.sh ├── lib ├── cert-bundle.js ├── command-line-arguments.js ├── log.js ├── logger.js ├── mallorca.js ├── proxy-server.js ├── statsd-client.js ├── stdio-logger.js ├── upstream.js └── watchdog.js ├── package.json └── test ├── cert-bundle.js ├── helpers └── testserver.js ├── keys ├── ca-certificates.crt ├── client.crt ├── client.key ├── empty.crt ├── proxyserver.crt ├── proxyserver.key ├── testserver.crt └── testserver.key ├── proxy-server.js ├── upstream.js └── watchdog.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/mallorca/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/mallorca/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/mallorca/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/mallorca/HEAD/README.md -------------------------------------------------------------------------------- /bin/mallorca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/mallorca/HEAD/bin/mallorca -------------------------------------------------------------------------------- /ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/mallorca/HEAD/ci.sh -------------------------------------------------------------------------------- /lib/cert-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/mallorca/HEAD/lib/cert-bundle.js -------------------------------------------------------------------------------- /lib/command-line-arguments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/mallorca/HEAD/lib/command-line-arguments.js -------------------------------------------------------------------------------- /lib/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/mallorca/HEAD/lib/log.js -------------------------------------------------------------------------------- /lib/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/mallorca/HEAD/lib/logger.js -------------------------------------------------------------------------------- /lib/mallorca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/mallorca/HEAD/lib/mallorca.js -------------------------------------------------------------------------------- /lib/proxy-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/mallorca/HEAD/lib/proxy-server.js -------------------------------------------------------------------------------- /lib/statsd-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/mallorca/HEAD/lib/statsd-client.js -------------------------------------------------------------------------------- /lib/stdio-logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/mallorca/HEAD/lib/stdio-logger.js -------------------------------------------------------------------------------- /lib/upstream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/mallorca/HEAD/lib/upstream.js -------------------------------------------------------------------------------- /lib/watchdog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/mallorca/HEAD/lib/watchdog.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/mallorca/HEAD/package.json -------------------------------------------------------------------------------- /test/cert-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/mallorca/HEAD/test/cert-bundle.js -------------------------------------------------------------------------------- /test/helpers/testserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/mallorca/HEAD/test/helpers/testserver.js -------------------------------------------------------------------------------- /test/keys/ca-certificates.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/mallorca/HEAD/test/keys/ca-certificates.crt -------------------------------------------------------------------------------- /test/keys/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/mallorca/HEAD/test/keys/client.crt -------------------------------------------------------------------------------- /test/keys/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/mallorca/HEAD/test/keys/client.key -------------------------------------------------------------------------------- /test/keys/empty.crt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/keys/proxyserver.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/mallorca/HEAD/test/keys/proxyserver.crt -------------------------------------------------------------------------------- /test/keys/proxyserver.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/mallorca/HEAD/test/keys/proxyserver.key -------------------------------------------------------------------------------- /test/keys/testserver.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/mallorca/HEAD/test/keys/testserver.crt -------------------------------------------------------------------------------- /test/keys/testserver.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/mallorca/HEAD/test/keys/testserver.key -------------------------------------------------------------------------------- /test/proxy-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/mallorca/HEAD/test/proxy-server.js -------------------------------------------------------------------------------- /test/upstream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/mallorca/HEAD/test/upstream.js -------------------------------------------------------------------------------- /test/watchdog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braintree/mallorca/HEAD/test/watchdog.js --------------------------------------------------------------------------------