Merge branch 'master' of github.com:Jlavatai/strapp
[henge/kiak.git] / opts.js
diff --git a/opts.js b/opts.js
index 5767cf6..d930e79 100644 (file)
--- a/opts.js
+++ b/opts.js
@@ -13,20 +13,19 @@ const path = require('path')
  */
 exports = require('minimist')(process.argv.slice(2), {
   string:  [ 'config', 'client-js', 'host-js', 'ca-cert', 'ca-key',
-            'port', 'index', 'bind', 'electron', 'dedicated'
+            'port', 'bind', 'electron', 'file-dir', 'dedicated'
           ],
   boolean: [ 'no-tls', 'legacy-socket' ],
   alias:   { c: 'config',
             j: 'client-js',
             J: 'host-js',
-            T: 'no-tls',
             C: 'ca-cert',
             K: 'ca-key',
             p: 'port',
-            i: 'index',
             b: 'bind',
             e: 'electron',
-            d: 'dedicated'
+            d: 'file-dir',
+             D: 'dedicated'
           },
   stopEarly: true,
   unknown: (opt) => {
@@ -48,9 +47,9 @@ exports['defaults'] = {
   'ca-cert':   '../certs/cert.pem',
   'ca-key':    '../certs/key.pem',
   port:        2443,
-  index:       './index.html',
   bind:        'www:./www',
   electron:    undefined,
+  'file-dir':  undefined,
   dedicated:   undefined,
   'legacy-socket': false
 }