Skip to content

Commit

Permalink
ES-271 (mosip#437)
Browse files Browse the repository at this point in the history
* [ES-255]

* translation files updated

* [ADDED] deeplink URI configuration corrected

* [DSD-3416] updated values.yaml file (mosip#389)

* [MOSIP-29168] Updated workflows as per reusable workflow format (mosip#391)

* [MOSIP-29168] Updated workflows as per reusable workflow format

[MOSIP-25631]

* [MOSIP-29168] minor fix

[MOSIP-25631]

---------

Co-authored-by: syed-salman-technoforte <[email protected]>

* [MOSIP-29519] added webhook secret in release-changes.yml file (mosip#401)

* default configuration for esignet UI updated

* [MOSIP-29519] added personal access token in release-changes.yml (mosip#405)

Signed-off-by: PRAFUL RAKHADE <[email protected]>

* [MOSIP-29519] added webhook secrets in tag.yml file (mosip#409)

* [ES-291] added validation in accepted claims and permittedAuthScope request list (mosip#408)

* Modified the version

* validation for empty acceptedCliams and permittedAuthorizeScopes

---------

Co-authored-by: Venkata Saidurga Polamraju <[email protected]>

* [ES-291] added test case for controllers (mosip#412)

* Modified the version

* validation for empty acceptedCliams and permittedAuthorizeScopes

* add test case for authcode controler and linkconsent

---------

Co-authored-by: Venkata Saidurga Polamraju <[email protected]>

* [FIXES] es-303 issue

* [ADDED] muliple wellknown endpoint through config

* [ES-295] (mosip#413)

* [ES-295]

* review comments fixed

* [MODIFIED] docker & nginx conf according wellknown api

* [ES-299] Added validation for codeChallenge (mosip#422)

* Modified the version

* validation for empty acceptedCliams and permittedAuthorizeScopes

* add test case for authcode controler and linkconsent

* added codeChallenge validtion

* added codeChallenge validation

* review changes

---------

Co-authored-by: Venkata Saidurga Polamraju <[email protected]>

* ES-298 ES-295 ES-310 (mosip#427)

* exp as epoch in JWK

* ES-295

* ES-310

* ES-298

---------

Co-authored-by: ase-101 <>

* [REMOVE] unused environment variable

* [MOSIP-29035] Updated esignet onboarder script to fetch value from docker env vars (mosip#414)

* [MOSIP-29035] Updated esignet onboarder script to fecth value from docker env vars

* [MOSIP-29035] Removed the dummy value for esignet misp key

* [MOSIP-29035] Updated dummy value with single quotes

---------

Co-authored-by: akilalakshmanan <[email protected]>

* [ADDED] openid credential issuer

* synced labels with artifactory

* [FIXES] spelling mistake

* ES-328 (mosip#434)

* ES-4 (mosip#432)

Co-authored-by: ase-101 <>

* ES-328

---------

Co-authored-by: ase-101 <>

* ES-328 (mosip#435)

Co-authored-by: ase-101 <>

* ES-271

---------

Signed-off-by: PRAFUL RAKHADE <[email protected]>
Co-authored-by: Venkata Saidurga Polamraju <[email protected]>
Co-authored-by: KONIJETI YASWANTHA NAGARJUNA <[email protected]>
Co-authored-by: anshulv1401 <[email protected]>
Co-authored-by: Zeeshan Mehboob <[email protected]>
Co-authored-by: PRAFUL RAKHADE <[email protected]>
Co-authored-by: syed salman <[email protected]>
Co-authored-by: syed-salman-technoforte <[email protected]>
Co-authored-by: anshulv1401 <[email protected]>
Co-authored-by: kaifk468 <[email protected]>
Co-authored-by: Zeeshan Mehboob <[email protected]>
Co-authored-by: pvsaidurga <[email protected]>
Co-authored-by: Akila Lakshmanan <[email protected]>
Co-authored-by: akilalakshmanan <[email protected]>
Co-authored-by: Sasikumar Ganesan <[email protected]>
Co-authored-by: ase-101 <>
Signed-off-by: ase-101 <[email protected]>
  • Loading branch information
15 people committed Jan 23, 2024
1 parent d3c5f68 commit ac2ec2a
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions helm/oidc-ui/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,31 @@ data:
text/plain log cer json txt;
}
}
location /.well-known/oauth-authorization-server {
proxy_pass http://{{ .Values.oidc_ui.oidc_service_host }}/v1/esignet/oauth/.well-known/oauth-authorization-server;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $server_name;
types {
text/plain log cer json txt;
}
}
location /.well-known/openid-credential-issuer {
proxy_pass http://{{ .Values.oidc_ui.oidc_service_host }}/v1/esignet/vci/.well-known/openid-credential-issuer;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $server_name;
types {
text/plain log cer json txt;
}
}
location / {
try_files $uri $uri/ /index.html;
Expand Down

0 comments on commit ac2ec2a

Please sign in to comment.