From fa7203a90dc56de30c80a8b058f257e0eb987c99 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Thu, 21 Jul 2016 17:57:57 +0300 Subject: [PATCH] Updated pem locations --- config/push-notification.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/push-notification.php b/config/push-notification.php index 89dd441ab531..0df48208dd8e 100644 --- a/config/push-notification.php +++ b/config/push-notification.php @@ -4,13 +4,13 @@ return [ 'devNinjaIOS' => [ 'environment' =>'development', - 'certificate'=>app_path().'/certs/ninjaIOS.pem', + 'certificate'=>storage_path().'/ninjaIOS.pem', 'passPhrase' =>'', 'service' =>'apns' ], 'ninjaIOS' => [ 'environment' =>'production', - 'certificate'=>app_path().'/certs/productionNinjaIOS.pem', + 'certificate'=>storage_path().'/productionNinjaIOS.pem', 'passPhrase' =>'', 'service' =>'apns' ], @@ -20,4 +20,4 @@ return [ 'service' =>'gcm' ] -]; \ No newline at end of file +];