-
Notifications
You must be signed in to change notification settings - Fork 325
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Setup technitium * Setup DoH and wire-server-enterprise * Follow wire-server-enterprise * Implement domain verification endpoints * Domain verification integration tests * Add domain verification endpoints to nginx conf * Add CHANGELOG entry * Fix DNS test and prevent UTF8 crash * fixup! Setup DoH and wire-server-enterprise * Make enterprise service endpoint optional in brig * Disable enterprise service on the second backend * Remove TODOs --------- Co-authored-by: Paolo Capriotti <[email protected]>
- Loading branch information
1 parent
64d4f04
commit bc2c43c
Showing
55 changed files
with
1,883 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
New endpoints for domain registration and verification: | ||
- POST /domain-verification/:domain/token | ||
- POST /domain-verification/:domain/backend | ||
- POST /domain-verification/:domain/team-token | ||
- POST /domain-verification/:domain/team | ||
- POST /get-domain-registration |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
env: | ||
DNS_SERVER_DOMAIN: localhost #The primary domain name used by this DNS Server to identify itself. | ||
DNS_SERVER_ADMIN_PASSWORD: admin #DNS web console admin user password. | ||
DNS_SERVER_OPTIONAL_PROTOCOL_DNS_OVER_HTTP: "true" #Enables DNS server optional protocol DNS-over-HTTP on TCP port 80. | ||
|
||
service: | ||
main: | ||
annotations: {} | ||
enabled: true | ||
primary: true | ||
type: ClusterIP | ||
externalTrafficPolicy: null # non-sense for local types | ||
ports: | ||
doh-http: | ||
enabled: true | ||
port: 5381 | ||
targetPort: 80 | ||
protocol: TCP | ||
admin-console: | ||
enabled: true | ||
port: 5380 | ||
targetPort: 5380 | ||
protocol: TCP | ||
|
||
# We don't want this to be reachable from outside. Things inside the cluster | ||
# shall use the Service. | ||
ingress: | ||
# -- Enable and configure ingress settings for the chart under this key. | ||
# @default -- See the [docs](https://github.com/k8s-at-home/library-charts/blob/main/charts/stable/common/README.md) | ||
main: | ||
enabled: false | ||
|
||
# We want to have a clean plate on every restart | ||
persistence: | ||
config: | ||
enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.