richhollis / swagger-docs

Generates swagger-ui json files for Rails APIs with a simple DSL.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How so set a generic base_path to manage multiple slug

Charrette opened this issue · comments

Hi,

I have an URL as app.myapp.com where each account get an unique slug, and the URL can become first-account.app.myapp.com or second-account.app.myapp.com

I can access swagger documentation by going on app.myapp.com/api/index but I'd like to be able to do also: first-account.app.myapp.com/api/index but this is not working, I get the error Unable to read api 'events' from path app.myapp.com/app/events.json (server returned undefined)

Actually in config/initializers/swagger_docs.rb I have:
:base_path => "app.myapp.com"

Any idea?