Enabled custom domain to use with the swagger API
This commit is contained in:
parent
a39c0a671d
commit
c73ce96f4d
|
@ -7,10 +7,17 @@ info:
|
||||||
servers:
|
servers:
|
||||||
- url: https://demo.funkwhale.audio/api/v1
|
- url: https://demo.funkwhale.audio/api/v1
|
||||||
description: Demo server
|
description: Demo server
|
||||||
- url: https://open.audio/api/v1
|
- url: https://{domain}/api/v1
|
||||||
description: Open Audio
|
description: Custom server
|
||||||
- url: https://node1.funkwhale.test/api/v1
|
variables:
|
||||||
description: Node 1 (local)
|
domain:
|
||||||
|
default: yourdomain
|
||||||
|
description: Your Funkwhale Domain
|
||||||
|
protocol:
|
||||||
|
enum:
|
||||||
|
- 'http'
|
||||||
|
- 'https'
|
||||||
|
default: 'https'
|
||||||
|
|
||||||
components:
|
components:
|
||||||
securitySchemes:
|
securitySchemes:
|
||||||
|
|
Loading…
Reference in New Issue