-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.example.json
More file actions
31 lines (31 loc) · 926 Bytes
/
Copy pathappsettings.example.json
File metadata and controls
31 lines (31 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"PaymentSettings": {
"Vnpay": {
"TmnCode": "YOUR_TMN_CODE",
"HashSecret": "YOUR_HASH_SECRET",
"BaseUrl": "https://sandbox.vnpayment.vn/paymentv2/vpcpay.html",
"CallbackUrl": "http://localhost:5200/api/payment/vnpay-callback",
"Version": "2.1.0"
},
"Sepay": {
"MerchantId": "YOUR_MERCHANT_ID",
"SecretKey": "YOUR_SECRET_KEY",
"BaseUrl": "https://pay.sepay.vn/checkout",
"SuccessUrl": "http://localhost:5200/success.html?gateway=sepay"
},
"Payos": {
"ClientId": "YOUR_CLIENT_ID",
"ApiKey": "YOUR_API_KEY",
"ChecksumKey": "YOUR_CHECKSUM_KEY",
"ReturnUrl": "http://localhost:5200/success.html?gateway=payos",
"CancelUrl": "http://localhost:5200/error.html?gateway=payos"
}
}
}