Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Overview

We can not access API's when API’s hosted domain is different from the UI domain. To resolve this issue we will enable cors in the service for a specific domain, e.g. we have two services that are hosted in mGramSeva and DIGIT-UI is hosted in iFix.

Configuration

For any service, cors is default false, for enabling the cors add the following configuration in the environment

{service-name}:
  ingress:
    cors:
      enabled: true
      annotations:
        nginx.ingress.kubernetes.io/cors-allow-origin: {origin-url}

e.g. for mGramSeva QA added in deploy-as-code/helm/environments/mgramseva-qa.yaml

adapter-master-data-service:
  ingress:
    cors:
      enabled: true
      annotations:
        nginx.ingress.kubernetes.io/cors-allow-origin: "https://ifix-qa.ifix.org.in"

ifix-department-entity-service:
  ingress:
    cors:
      enabled: true
      annotations:
        nginx.ingress.kubernetes.io/cors-allow-origin: "https://ifix-qa.ifix.org.in"

  • No labels

0 Comments

You are not logged in. Any changes you make will be marked as anonymous. You may want to Log In if you already have an account.