You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to have the dashboard listen on localhost only?
So far, the app listens on :: (or IPv4 0.0.0.0) by default, which makes the message available at http://localhost:4040/ confusing.
A possibility would be to have an --host option, and/or a HOST env var (similarly to the option for the port) and pass it directly to express's listen() function along with the port.
My goal is to run the dashboard behind a HTTPS nginx proxy, and by listening on localhost only I can better restrict the access.
The text was updated successfully, but these errors were encountered:
Make sure these boxes are checked before submitting your issue -- thanks for reporting issues back to Parse Dashboard!
Environment Setup
Ubuntu 15.10
parse-dashboard v1.0.7 installed with
npm install -g parse-dashboard
Steps to reproduce
parse-dashboard --config myconfig.json
Logs/Trace
Hello,
Is it possible to have the dashboard listen on localhost only?
So far, the app listens on
::
(or IPv40.0.0.0
) by default, which makes the messageavailable at http://localhost:4040/
confusing.A possibility would be to have an
--host
option, and/or aHOST
env var (similarly to the option for the port) and pass it directly to express'slisten()
function along with the port.My goal is to run the dashboard behind a HTTPS nginx proxy, and by listening on localhost only I can better restrict the access.
The text was updated successfully, but these errors were encountered: