我正在尝试让我的契约经纪人在我的环境中工作。我的经纪人在K8S的https://mydomain/pactbroker下运行(图像; dius / pactbroker)。我能够使用Maven插件(发布)发送给代理。但是,当我尝试验证时出现错误;路径“ /”的请求失败,响应为“ HTTP / 1.1 401未经授权”
有人可以帮我吗?
<build>
<plugins>
<plugin>
<groupId>au.com.dius</groupId>
<artifactId>pact-jvm-provider-maven</artifactId>
<version>4.0.10</version>
<configuration>
<serviceProviders>
<!-- You can define as many as you need, but each must have a unique name -->
<serviceProvider>
<name>FaqService</name>
<protocol>http</protocol>
<host>localhost</host>
<port>8080</port>
<pactBroker>
<url>https://mydomain/pactbroker/</url>
<authentication>
<scheme>basic</scheme>
<username>user</username>
<password>pass</password>
</authentication>
</pactBroker>
</serviceProvider>
</serviceProviders>
</configuration>
</plugin>
</plugins>
</build>
您确认可以在Maven之外正确使用代理吗?
例如您可以curl --user user:pass https://mydomain/pactbroker/
并获取API结果吗?您可以在浏览器中访问它吗?
您可能还需要确保所有相关链接等均正常工作。请参阅https://docs.pact.io/pact_broker/configuration#running-the-broker-behind-a-reverse-proxy和文档,以了解前面的代理。