mirror of
https://github.com/overleaf/overleaf.git
synced 2025-02-23 12:51:46 +00:00
Merge pull request #15141 from overleaf/ab-fix-local-acceptance-testing
Fix local acceptance tests configuration GitOrigin-RevId: d4b3060b240ec748c222c7cc468a4b26442e45b8
This commit is contained in:
parent
8f1dac6d68
commit
16cfda28e3
2 changed files with 9 additions and 3 deletions
|
@ -7,12 +7,12 @@ PUBSUB_REDIS_HOST=127.0.0.1
|
||||||
RATELIMITER_REDIS_HOST=127.0.0.1
|
RATELIMITER_REDIS_HOST=127.0.0.1
|
||||||
GCLOUD_2_REDIS_HOST=127.0.0.1
|
GCLOUD_2_REDIS_HOST=127.0.0.1
|
||||||
POSTGRES_HOST=127.0.0.1
|
POSTGRES_HOST=127.0.0.1
|
||||||
MONGO_URL=mongodb://127.0.0.1/test-sharelatex
|
MONGO_URL=mongodb://127.0.0.1/test-sharelatex?directConnection=true
|
||||||
SHARELATEX_LDAP_URL=ldap://127.0.0.1:22389
|
SHARELATEX_LDAP_URL=ldap://127.0.0.1:22389
|
||||||
SAML_BASE_URL_PATH=http://127.0.0.1:22280/simplesaml/
|
SAML_BASE_URL_PATH=http://127.0.0.1:22280/simplesaml/
|
||||||
SHARELATEX_SAML_ENTRYPOINT=http://127.0.0.1:22280/simplesaml/saml2/idp/SSOService.php
|
SHARELATEX_SAML_ENTRYPOINT=http://127.0.0.1:22280/simplesaml/saml2/idp/SSOService.php
|
||||||
SHARELATEX_SAML_CALLBACK_URL=http://127.0.0.1:22280/saml/callback
|
SHARELATEX_SAML_CALLBACK_URL=http://127.0.0.1:22280/saml/callback
|
||||||
|
|
||||||
COOKIE_DOMAIN=
|
COOKIE_DOMAIN=
|
||||||
PUBLIC_URL=http://127.0.0.1:23000
|
PUBLIC_URL=http://localhost:23000
|
||||||
HTTP_TEST_HOST=127.0.0.1
|
HTTP_TEST_HOST=localhost
|
||||||
|
|
|
@ -29,6 +29,12 @@ module.exports = {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
mongo: {
|
||||||
|
options: {
|
||||||
|
family: 4,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
apis: {
|
apis: {
|
||||||
linkedUrlProxy: {
|
linkedUrlProxy: {
|
||||||
url: process.env.LINKED_URL_PROXY,
|
url: process.env.LINKED_URL_PROXY,
|
||||||
|
|
Loading…
Reference in a new issue