0

是否可以将域/路径重定向到没有路径的内部服务器?即 hxxp://example.com/test 重定向到内部服务器 192.168.1.1:8888

我使用 supdomains 启动并运行了我的 traefik,但是一旦我尝试使用路径,我就会遇到问题。我试过pathprefixstrip无济于事。

这是在我的 qnap 服务器上的 docker 中运行的。

[frontends.test1]
    backend = "test1"
    entrypoints = ["https"]
        [frontends.tes1t.routes.test1]
        rule = "Host:example.com;PathPrefixStrip /test"

[backends.test1]
            [backends.test1.servers.test1]
            url = "hxxps://192.168.1.1:8888"
4

1 回答 1

3

尝试使用PathPrefixStrip:/test而不是PathPrefixStrip /test(以您使用的相同想法Host:example.com而不是Host example.com.

于 2017-07-13T14:31:40.040 回答