Closed
Description
I'm accessing nginx on my server via an SSL connection and passing the request to the dashboard express app via a reverse proxy. The title of the tab gets named "Parse Dashboard" but the screen is completely blank.
My dashboard config is:
{
"apps": [
{
"serverURL": "https://SERVER_IP/api/data",
"appId": "XXXXX",
"masterKey": "XXXX",
"appName": "APPNAME"
}
],
"users": [
{
"user":"user1",
"pass":"XXXXX"
},
{
"user":"user2",
"pass":"XXXXX"
}
]
}
And the nginx proxy config is:
location /dashboard {
proxy_pass http://127.0.0.1:4040;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
I'm using a similar configuration for the express app that runs parse-server and that works flawlessly. Any idea what could be going wrong here? If I run the dashboard locally it works perfectly fine.
Metadata
Metadata
Assignees
Labels
No labels