Issue
This Content is from Stack Overflow. Question asked by Samuel
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?
Solution
This question is not yet answered, be the first one who answer using the comment. Later the confirmed answer will be published as the solution.
This Question and Answer are collected from stackoverflow and tested by JTuto community, is licensed under the terms of CC BY-SA 2.5. - CC BY-SA 3.0. - CC BY-SA 4.0.