From 13efed3ca41ee18927a0ca4355412240d211e19a Mon Sep 17 00:00:00 2001 From: Edward DeMaio Date: Thu, 12 Feb 2015 21:29:54 -0500 Subject: [PATCH 1/2] added url_type option to cloud files config added default url type to Rackspace Cloud Files config to match the pr #7409 in laravel/framework --- config/filesystems.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config/filesystems.php b/config/filesystems.php index ad8228f2..9efa3961 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -63,6 +63,7 @@ 'container' => 'your-container', 'endpoint' => 'https://identity.api.rackspacecloud.com/v2.0/', 'region' => 'IAD', + 'url_type' => 'publicURL' ], ], From 2c2488e4bdb7ab5ce7ec876b1c9cd0cf2b38bb29 Mon Sep 17 00:00:00 2001 From: Edward DeMaio Date: Thu, 12 Feb 2015 21:31:22 -0500 Subject: [PATCH 2/2] fixed spacing issue --- config/filesystems.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/filesystems.php b/config/filesystems.php index 9efa3961..0221fa70 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -63,7 +63,7 @@ 'container' => 'your-container', 'endpoint' => 'https://identity.api.rackspacecloud.com/v2.0/', 'region' => 'IAD', - 'url_type' => 'publicURL' + 'url_type' => 'publicURL' ], ],