From 76efe6dac9c84a46a5e89a6e5ab83f4295fe28eb Mon Sep 17 00:00:00 2001 From: Andrew Gaul Date: Thu, 7 Jul 2016 04:21:22 -0700 Subject: [PATCH] Destroyed Provider examples (markdown) --- Provider-examples.md | 101 ------------------------------------------- 1 file changed, 101 deletions(-) delete mode 100644 Provider-examples.md diff --git a/Provider-examples.md b/Provider-examples.md deleted file mode 100644 index 4f08adb..0000000 --- a/Provider-examples.md +++ /dev/null @@ -1,101 +0,0 @@ -### Azure Blob - -``` -s3proxy.endpoint=http://127.0.0.1:8080 -s3proxy.authorization=aws-v2 -s3proxy.identity=local-identity -s3proxy.credential=local-credential -jclouds.provider=azureblob -jclouds.identity=xxxxxxxxx -jclouds.credential=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -``` - -### Backblaze B2 - -``` -s3proxy.endpoint=http://127.0.0.1:8081 -s3proxy.authorization=aws-v2 -s3proxy.identity=local-identity -s3proxy.credential=local-credential -jclouds.provider=b2 -jclouds.identity=xxxxxxxxxxxx -jclouds.credential=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -``` - -### Google Cloud Storage - -``` -s3proxy.endpoint=http://127.0.0.1:8080 -s3proxy.authorization=aws-v2 -s3proxy.identity=local-identity -s3proxy.credential=local-credential -jclouds.provider=google-cloud-storage -jclouds.identity=999999999999-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx@developer.gserviceaccount.com -jclouds.credential=/path/to/credentials.key -``` - -Where `/path/to/credentials.key` contains: - -``` ------BEGIN RSA PRIVATE KEY----- -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx ------END RSA PRIVATE KEY----- -``` - -### Rackspace Cloud Files - -An example using a user-specified region: - -``` -s3proxy.endpoint=http://127.0.0.1:8080 -s3proxy.authorization=aws-v2 -s3proxy.identity=local-identity -s3proxy.credential=local-credential -jclouds.provider=rackspace-cloudfiles-us -jclouds.identity=xxxxxxxxxxxxx -jclouds.credential=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -jclouds.region=HKG -``` -### Swift (non-Keystone) - -An example using remote swift with non-keystone v1 auth (default accounts created with Swift-In-A-Box instructions): - -``` -s3proxy.endpoint=http://127.0.0.1:8080 -s3proxy.authorization=aws-v2 -s3proxy.identity=local-identity -s3proxy.credential=local-credential -jclouds.provider=swift -jclouds.endpoint=http://IP-OF-SWIFT:PORT/auth/v1.0 -jclouds.api=swift -jclouds.identity=test:tester -jclouds.credential=testing -``` - -### Softlayer - -An example using SoftLayer. (Working as of 2015-10-09 with S3Proxy 1.5.0-snapshot): - -``` -s3proxy.endpoint=http://localhost:8080 -s3proxy.authorization=aws-v2 -s3proxy.identity=local-identity -s3proxy.credential=local-credential -jclouds.provider=openstack-swift -jclouds.endpoint=https://dal05.objectstorage.softlayer.net/auth/v1.0 -jclouds.identity=test:tester -jclouds.credential=testing -jclouds.keystone.credential-type=tempAuthCredentials -``` \ No newline at end of file