Open Closed

Api account url setting #6112


User avatar
0
s4lv0 created
  • ABP Framework version: v7.3.2
  • UI Type: Angular
  • Database System: EF Core (SQL Server)
  • Auth Server Separated (for Angular): no
  • Exception message and full stack trace:
  • Steps to reproduce the issue:

Greetings, after publishing an application generated with abp suite, I have an error on the browser because the account module points to an address in localhost. How do I set the module account URL?

all other endpoints are ok~~~~


4 Answer(s)
  • User Avatar
    0
    maliming created
    Support Team Fullstack Developer

    hi

    You can global search the localhost in your solution.

    environment.ts or environment.prod.ts etc.

  • User Avatar
    0
    s4lv0 created

    Hi, the problem is only on account module. The app now is deployed on nginx using the dynamic-env.json All modules are using the right endpoint apis->default->url instead the account module use the localhost.

    {
      "production": true,
      "application": {
        "baseUrl":"https://etsapp-ui-dev.mydomain.it",
        "name": "App",
        "logoUrl": ""
      },
      "oAuthConfig": {
        "issuer": "https://etsapp-api-dev.mydomain.it/",
        "redirectUri": "https://etsapp-ui-dev.mydomain.it",
        "clientId": "App_App",
        "responseType": "code",
        "scope": "offline_access openid profile email phone App"
       },
      "apis": {
        "default": {
          "url": "https://etsapp-api-dev.mydomain.it",
          "rootNamespace": "App"
          }
      }
    }
    
  • User Avatar
    0
    s4lv0 created

    The missing section in dynamic-env.json was AbpAccountPublic. We solve adding the following section inside the file.

    {
      "production": true,
      "application": {
        "baseUrl":"http://localhost:4200",
        "name": "App",
        "logoUrl": ""
      },
      "oAuthConfig": {
        "issuer": "https://localhost:44391/",
        "redirectUri": "http://localhost:4200",
        "clientId": "App_App",
        "responseType": "code",
        "scope": "offline_access openid profile email phone App"
      },
      "apis": {
        "default": {
          "url": "https://localhost:44391",
          "rootNamespace": "App"
        },
        "AbpAccountPublic": {
          "url": "https://localhost:44391/",
          "rootNamespace": "AbpAccountPublic"
        }
      }
    }
    
  • User Avatar
    0
    maliming created
    Support Team Fullstack Developer

    Thank you s4lv0 👍

Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11