Compare commits

..

No commits in common. "42c7a4d240fe9ba192f43832d3eef0844e61501d" and "39691254ca373f36322df903fdc793f77a285559" have entirely different histories.

View File

@ -38,13 +38,13 @@ public class PushController : ControllerBase
if (_env.IsDevelopment()) if (_env.IsDevelopment())
{ {
uri = "https://api.sandbox.push.apple.com"; uri = "https://api.sandbox.push.apple.com";
p12FilePath = "/volume1/AcaMate/PROJECT/Application/Back/private/AM_Push_Sandbox.p12"; p12FilePath = "/volume1/AcaMate/PROJECT/Application/Back/private/AM_Push_Sandbox.pfx";
// p12FilePath = "private/AM_Push_Sandbox.p12"; // p12FilePath = "private/AM_Push_Sandbox.p12";
} }
else else
{ {
uri = "https://api.push.apple.com"; uri = "https://api.push.apple.com";
p12FilePath = "/volume1/AcaMate/PROJECT/Application/Back/private/AM_Push.p12"; p12FilePath = "/volume1/AcaMate/PROJECT/Application/Back/private/AM_Push.pfx";
// p12FilePath = "private/AM_Push.p12"; // p12FilePath = "private/AM_Push.p12";
} }
var apnsTopic = "me.myds.ipstien.acamate.AcaMate"; var apnsTopic = "me.myds.ipstien.acamate.AcaMate";