Routes SpringCloudGateway背后的SpringBootAdmin配置

Routes SpringCloudGateway背后的SpringBootAdmin配置,routes,api-gateway,spring-cloud-gateway,spring-boot-admin,Routes,Api Gateway,Spring Cloud Gateway,Spring Boot Admin,我的SpringBoot管理服务在SpringGateway后面的docker容器中运行。为此,我通过以下方式配置了公共url: spring: boot: admin: ui: public-url: "https://myAppname.intranet.cnb/monitoring/" 我现在的问题是,如果省略了端口,SpringAdmin默认情况下会添加一个端口(在我的例子中是“8080”)。这将产生一个URL https:/

我的SpringBoot管理服务在SpringGateway后面的docker容器中运行。为此,我通过以下方式配置了公共url:

spring:
  boot:
    admin:
      ui:
        public-url: "https://myAppname.intranet.cnb/monitoring/"
我现在的问题是,如果省略了端口,SpringAdmin默认情况下会添加一个端口(在我的例子中是“8080”)。这将产生一个URL

https://myAppname.intranet.cnb:8080/monitoring/
此公共url中的端口不适用于我。你知道如何在没有端口的情况下配置这个公共url吗

谢谢