For implementation related questions or technical support, please refer to the Stack Overflow and Server Fault communities.
Make sure these boxes are checked before submitting your issue -- thanks for reporting issues back to Parse Server!
Can you provide some more details about the exact issue you are seeing and how you installed the dashboard?
Actually i have configured the parse dashboard and ssl installed too but when i open my server its give an error can only be accessed using https
Are you using early SSL termination? If you are terminating SSL early, the dashboard will think it's being accessed over HTTP, which is unsafe. If you are terminating SSL early, and have disabled HTTP connections, you can safely use the --allowInsecureHTTP=1 option to disable the security check.
--allowInsecureHTTP=1 how can i do this
You pass it as an option on the command line when you launch the dashboard, or put it in an environment variable. You can also run the dashboard locally, which I think is the safest and easiest option.
i have done it now i am facing this error "Configure a user to access Parse Dashboard remotely"
Check the readme for how to do that.
I faced the same issue: "Configure a user to access Parse Dashboard remotely". Did you fixed it? @Heman6886 @drew-gross
Still have the issue when I used this CLI:
docker run -d -e APP_ID=APP_ID -e MASTER_KEY=MASTER_KEY -e SERVER_URL=http://localhost:1337/parse -e PARSE_DASHBOARD_ALLOW_INSECURE_HTTP=1 -e USER1=myuser -e USER1_PASSWORD=mypwd -p 4040:4040 --link parse-server --name parse-dashboard yongjhih/parse-dashboard
Fixed the issue by:
{
"apps": [{"...": "..."}],
"users": [
{
"user":"user1",
"pass":"pass1",
"apps": [{"appId1": "myAppId1"}, {"appId2": "myAppId2"}]
},
{
"user":"user2",
"pass":"pass2",
"apps": [{"appId1": "myAppId1"}]
} ]
}
Hi @AaronLiang can you explain your answer, how did you user this config with yongjhih/parse-dashboard docker image?
Up ! Did anybody solved this issue with yongjhih/parse-dashboard docker image?
I'm also having this problem... does anyone was able to setup yongjhih/parse-dashboard with docker-composer and access it remotely? is it a problem with using nginx proxy?
Most helpful comment
Hi @AaronLiang can you explain your answer, how did you user this config with yongjhih/parse-dashboard docker image?