generated from ConductionNL/Proto-component-commonground
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
31 changed files
with
14,521 additions
and
999 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 |
---|---|---|
|
@@ -26,14 +26,34 @@ APP_DESCRIPTION='This component provides a products and services catalogue that | |
|
||
# The urls on wich this api is available | ||
TRUSTED_PROXIES=10.0.0.0/8,172.16.0.0/12,192.168.0.0/16 | ||
TRUSTED_HOSTS=^(.+\.)?conduction\.nl$|^(.+\.)?huwelijksplanner\.online$|^(.+\.)?larping\.eu$|^(.+\.)?common-ground\.nl$|^(.+\.)?trouwplanner\.online$|^(.+\.)?zaakonline\.nl$|localhost | ||
TRUSTED_HOSTS=^(.+\.)?conduction\.nl$|^(.+\.)?vng\.cloud$|^(.+\.)?huwelijksplanner\.online$|^(.+\.)?larping\.eu$|^(.+\.)?common-ground\.dev$|^(.+\.)?trouwplanner\.online$|^(.+\.)?zaakonline\.nl$|localhost | ||
|
||
################################################## | ||
# Orgization details | ||
################################################## | ||
|
||
# The following details describe your organisations and are used for both certificate creation, nlx (if active) and common-ground.dev | ||
|
||
ORGANIZATION_NAME=Conduction | ||
ORGANIZATION_EMAIL_ADDRESS=[email protected] | ||
ORGANIZATION_COUNTRY_NAME=Netherlands | ||
ORGANIZATION_STATE=Noord-Holland | ||
ORGANIZATION_LOCALITY=Amsterdam | ||
ORGANIZATION_UNIT_NAME=Common-Ground | ||
|
||
################################################## | ||
# Documentation settings | ||
################################################## | ||
|
||
# The primary domain for this API @depracticed | ||
APP_DOMAIN=conduction.nl | ||
APP_DOMAINS=["conduction.nl","huwelijksplanner.online"] | ||
# he domains on wich you want to provide this component, the first wil be used as primary (or common in cert-manger terms) | ||
# If set to true wil provide the component on an {APP_NAME}.{APP_DOMAIN} basis for production enviroment, and {APP_NAME}.{APP_ENV}.{APP_DOMAIN} basis for other enviroments. Wil skipp the {APP_NAME}. on both if set to false | ||
APP_USE_NAME_AS_SUBDOMAIN=true | ||
# The demo enviroment for this component @depracticed | ||
APP_DEMO=pdc.zaakonline.nl | ||
# he Repository for this component | ||
APP_REPRO=https://github.com/ConductionNL/productenendienstencatalogus | ||
|
||
################################################## | ||
|
@@ -42,14 +62,15 @@ APP_REPRO=https://github.com/ConductionNL/productenendienstencatalogus | |
|
||
CONTAINER_REGISTRY_BASE=docker.io/conduction | ||
CONTAINER_PROJECT_NAME=pdc | ||
# The repository for the primary (php) container of this project | ||
CONTAINER_REPRO=https://hub.docker.com/repository/docker/conduction/pdc-php | ||
|
||
################################################## | ||
# Notifcation settings | ||
################################################## | ||
|
||
NOTIFICATION_ENABLED=falsedxfddxf | ||
NOTIFICATION_PROVIDER=sasd | ||
NOTIFICATION_PROVIDER=sasdasd | ||
NOTIFICATION_ENABLED_AUTHORIZATION=sasd | ||
|
||
################################################## | ||
|
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,3 @@ | ||
sensio_framework_extra: | ||
router: | ||
annotations: 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
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,16 @@ | ||
apiVersion: cert-manager.io/v1alpha2 | ||
kind: ClusterIssuer | ||
metadata: | ||
name: {{ include "name" . }}-{{ .Values.settings.env }}-letsencrypt | ||
spec: | ||
acme: | ||
email: {{ .Values.settings.email }} | ||
http01: {} | ||
privateKeySecretRef: | ||
name: letsencrypt-private-key | ||
server: https://acme-v02.api.letsencrypt.org/directory | ||
solvers: | ||
- selector: {} | ||
http01: | ||
ingress: | ||
class: nginx |
Oops, something went wrong.