mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
76fa325f08
Authelia client uses hash router instead of browser router in order to work with Kubernetes nginx-ingress-controller. This is also better for users having old browsers. This commit is breaking because it requires to change the configuration of the proxy to include the # in the URL of the login portal.
18 lines
511 B
JavaScript
18 lines
511 B
JavaScript
var spawn = require('child_process').spawn;
|
||
|
||
function exec(cmd) {
|
||
return new Promise((resolve, reject) => {
|
||
const command = spawn(cmd, {shell: true, env: process.env});
|
||
command.stdout.pipe(process.stdout);
|
||
command.stderr.pipe(process.stderr);
|
||
command.on('exit', function(statusCode) {
|
||
if (statusCode != 0) {
|
||
reject(new Error('Command \'' + cmd + '\' has exited with status ' + statusCode + '.'));
|
||
return;
|
||
}
|
||
resolve();
|
||
})
|
||
})
|
||
}
|
||
|
||
module.exports = { exec } |