-
Notifications
You must be signed in to change notification settings - Fork 2
/
httpbin.prod.toml
34 lines (26 loc) · 973 Bytes
/
httpbin.prod.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Public HTTPBIN-RS Config File
# All servers are run in docker containers
ip = "0.0.0.0"
port = 8080
# The following configures the OpenAPI documentation
[openapi]
contact = { name = "duskmoon (developer)", url = "https://duskmoon314.com", email = "kp.campbell.he@duskmoon314.com" }
external_document = { description = "Source code (GitHub)", url = "https://github.com/duskmoon314/httpbin-rs" }
[openapi.servers.poem-openapi]
description = "poem-openapi implementation"
url = "https://httpbin.rs"
[openapi.servers.axum]
description = "axum implementation"
url = "https://axum.httpbin.rs"
[openapi.servers.actix]
description = "actix implementation"
url = "https://actix.httpbin.rs"
[openapi.servers.salvo]
description = "salvo implementation"
url = "https://salvo.httpbin.rs"
[openapi.servers.rocket]
description = "rocket implementation"
url = "https://rocket.httpbin.rs"
[openapi.servers.poem]
description = "poem implementation"
url = "https://poem.httpbin.rs"