Reputation: 1
I have tried using serverURL as localhost:1337/parse and publicServerURL as https://mydomaindotcom:1337/parse but I don't know how parse is recognizing the certificate. I don't see a config value to set the cert for parse-server.
Also tried adding cert to IIS 7 to a website on port 443 and using URL Rewrite 2.0 to localhost:1337/parse.
I'm running a self-hosted parse instance using node. parse-server is installed globally. I'm using a config file to start to instance.
Server works fine on http, however I need to utilize https so I can use the rest or js api key without passing headers like so https://myAppID:javascript-key=myJavaScriptKey@mydomaindotcom/classes/GameScore/Ed1nuqPvcm
Any help is much appreciated.
Upvotes: 0
Views: 133
Reputation: 154
You need to add an https binding that references port 1337 if that is the one that you want to use.
Upvotes: 0