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.
37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
import DockerEnvironment from "../../helpers/context/DockerEnvironment";
|
|
import { exec } from "../../helpers/utils/exec";
|
|
|
|
const composeFiles = [
|
|
'docker-compose.yml',
|
|
'example/compose/authelia/docker-compose.dockerhub.yml',
|
|
'example/compose/mongo/docker-compose.yml',
|
|
'example/compose/redis/docker-compose.yml',
|
|
'example/compose/nginx/backend/docker-compose.yml',
|
|
'example/compose/nginx/portal/docker-compose.yml',
|
|
'example/compose/smtp/docker-compose.yml',
|
|
'example/compose/httpbin/docker-compose.yml',
|
|
'example/compose/ldap/docker-compose.admin.yml', // This is just used for administration, not for testing.
|
|
'example/compose/ldap/docker-compose.yml'
|
|
]
|
|
|
|
const dockerEnv = new DockerEnvironment(composeFiles);
|
|
|
|
async function setup() {
|
|
await exec('./example/compose/nginx/portal/render.js --production http://authelia:9091');
|
|
await dockerEnv.start();
|
|
}
|
|
|
|
async function teardown() {
|
|
await dockerEnv.stop();
|
|
}
|
|
|
|
const setup_timeout = 30000;
|
|
const teardown_timeout = 30000;
|
|
|
|
export {
|
|
setup,
|
|
setup_timeout,
|
|
teardown,
|
|
teardown_timeout,
|
|
composeFiles
|
|
}; |