Skip to content

Instantly share code, notes, and snippets.

@bebrws
Created April 17, 2023 22:01
Show Gist options
  • Save bebrws/71ae9afebf68a4c33711808571f6cd57 to your computer and use it in GitHub Desktop.
Save bebrws/71ae9afebf68a4c33711808571f6cd57 to your computer and use it in GitHub Desktop.
Configure a local Sourcegraph instance to not require login - UNSAFE if server is public
{
"auth.degraded.public": true,
"auth.public": true,
"auth.providers": [
{
"allowSignup": true,
"type": "builtin"
}
],
"externalURL": "http://localhost:3080",
"codeIntelAutoIndexing.enabled": true,
"codeIntelAutoIndexing.allowGlobalPolicies": true,
"executors.frontendURL": "http://host.docker.internal:3080",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment