Forum Discussion
How do you deploy Swagger UI to AWS?
Based on the way you describe the issue, it seems the problem is potentially with the definition itself as well. Can you share what your 'servers' definition looks like?
- ronlut6 years agoNew Contributor
Thanks for your reply.
It's a flask app, using swagger with the help of connexion and deployed to AWS using Serverless Framework.
By default I have no "servers" definition as the default ('/') works just fine when developing and when loading on aws (the ui loads but without the openapi.json as I described before).
When I talked about setting '/dev' as the base path I set it like this:
servers:
-
url: /dev
description: Development server (uses dev data)- RonRatovsky6 years agoStaff
Thanks for the additional details.
I imagine you're including Swagger UI as a connexion module, and not deploying it on your own. Based on what you're describing, it seems like an issue with the connexion configuration rather than with Swagger UI.
Swagger UI has no impact on where it is served from. The URL it loads depends on the 'url' parameter in its configuration, so if it doesn't load the file properly, it means the URL being fed to it is wrong.
The try it out functionality depends on the API definition itself, as you already figured out. The catch is that if a relative URL is being used in the 'servers', then it will be relative to the location of the 'openapi.yaml' file.
As a first step of solving this, try fixing the configuration in connexion so that it loads the right URL from start. Unfortunately, connexion is not one of our projects, and I don't know well it enough to guide you towards how to do that.
Related Content
- 2 years ago
- 3 years ago
- 3 years ago
Recent Discussions
- 3 days ago
- 9 days ago