Compare commits

..

2 Commits

Author SHA1 Message Date
42c7a4d240 Merge pull request '[🐛] 6차 푸시 확인' (#11) from seonkyu.kim/AcaMate_API:main into debug
All checks were successful
Back/pipeline/head This commit looks good
Reviewed-on: https://git.ipstein.myds.me/AcaMate/AcaMate_API/pulls/11
2024-11-30 01:56:30 +00:00
06507eca1f [🐛] 6차 푸시 확인
Signed-off-by: seonkyu.kim <sean.kk@daum.net>
2024-11-30 10:55:26 +09:00

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.pfx"; p12FilePath = "/volume1/AcaMate/PROJECT/Application/Back/private/AM_Push_Sandbox.p12";
// 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.pfx"; p12FilePath = "/volume1/AcaMate/PROJECT/Application/Back/private/AM_Push.p12";
// p12FilePath = "private/AM_Push.p12"; // p12FilePath = "private/AM_Push.p12";
} }
var apnsTopic = "me.myds.ipstien.acamate.AcaMate"; var apnsTopic = "me.myds.ipstien.acamate.AcaMate";