The init looks like this when running this natively:
var server = new ParseServer({
databaseURI: '...',
cloud: '...',
appId: '...',
masterKey: '...',
push: {
android: {
senderId: '...',
apiKey: '...'
},
ios: {
pfx: '/file/path/to/XXX.p12',
passphrase: '', // optional password to your p12/PFX
bundleId: '',
production: false
}
}
});
My question is - how do I pass the IOS configuration array if I have an existing p12 I want to use in a docker container?
I've tried the following by mounting a volume where my p12 cert is located but since the push configuration seems to be an array I'm not sure of the syntax (below generates an error (yes the 'xxxxxx' are substitutes for my actual keys / config values).
Hello,
After reading the parse docs I see that I need to include the following configuration to get parse server running with certificates.
https://github.com/ParsePlatform/parse-server/wiki/Push
The init looks like this when running this natively:
My question is - how do I pass the IOS configuration array if I have an existing p12 I want to use in a docker container?
I've tried the following by mounting a volume where my p12 cert is located but since the push configuration seems to be an array I'm not sure of the syntax (below generates an error (yes the 'xxxxxx' are substitutes for my actual keys / config values).
Any help is appreciated.
Andrew