Compare commits

..

2 Commits

Author SHA1 Message Date
a2141e18b0 Merge pull request '[🐛] 4차 푸시 확인' (#9) 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/9
2024-11-29 17:40:20 +00:00
d52ef4ff02 [🐛] 4차 푸시 확인
Signed-off-by: seonkyu.kim <sean.kk@daum.net>
2024-11-30 02:39:42 +09:00

View File

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