SpringDoc/Swagger behind an apache proxy

Viewed 23

I have a working Swagger at a URL like http://myserver.myhost.net:8080/swagger-ui/index.html and I have set this configuration on Apache side to map it to the port 80:

    <Location /myservice>
        ProxyPass http://localhost:8080
        ProxyPassReverse http://localhost:8080
        Order allow,deny
        Allow from all
    </Location>

Now when I go to http://myserver.myhost.net/myservice/swagger-ui/index.html I get the default Swagger Petstore.

Can I fix that by changing some properties?

0 Answers
Related