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
Copy file name to clipboardExpand all lines: Parse-Dashboard/index.js
+22-4Lines changed: 22 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,8 @@ program.option('--host [host]', 'the host to run parse-dashboard');
22
22
program.option('--port [port]','the port to run parse-dashboard');
23
23
program.option('--mountPath [mountPath]','the mount path to run parse-dashboard');
24
24
program.option('--allowInsecureHTTP [allowInsecureHTTP]','set this flag when you are running the dashboard behind an HTTPS load balancer or proxy with early SSL termination.');
25
+
program.option('--sslKey [sslKey]','the path to the SSL private key.');
26
+
program.option('--sslCert [sslCert]','the path to the SSL certificate.');
25
27
26
28
program.parse(process.argv);
27
29
@@ -39,6 +41,8 @@ let configAppId = program.appId || process.env.PARSE_DASHBOARD_APP_ID;
0 commit comments