RLGWebD: move the control socket into /var/run.

This is a more standard location.  /run is preferred by systemd, but
portability to non-systemd systems is important.
This commit is contained in:
John "Elwin" Edwards 2016-01-14 19:10:46 -05:00
parent 9a709adc58
commit ff0814c7ac
4 changed files with 3 additions and 4 deletions

View file

@ -14,7 +14,7 @@ var WebSocketServer = require("websocket").server;
/* Configuration variables */
// The first file is NOT in the chroot.
var ctlsocket = "/var/local/rlgwebd/ctl";
var ctlsocket = "/var/run/rlgwebd.sock";
var httpPort = 8080;
var chrootDir = "/var/dgl/";
var dropToUser = "rodney";