-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCaddyfile
More file actions
73 lines (69 loc) · 1.89 KB
/
Caddyfile
File metadata and controls
73 lines (69 loc) · 1.89 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
# Global options
}
# Access Node API Gateway
:80 {
# TMForum APIs
handle_path /tmf-api/accountManagement* {
reverse_proxy account:8080
}
handle_path /tmf-api/agreementManagement* {
reverse_proxy agreement:8080
}
handle_path /tmf-api/customerBillManagement* {
reverse_proxy customer-bill-management:8080
}
handle_path /tmf-api/customerManagement* {
reverse_proxy customer-management:8080
}
handle_path /tmf-api/party* {
reverse_proxy party-catalog:8080
}
handle_path /tmf-api/partyRoleManagement* {
reverse_proxy party-role:8080
}
handle_path /tmf-api/productCatalogManagement* {
reverse_proxy product-catalog:8080
}
handle_path /tmf-api/productInventory* {
reverse_proxy product-inventory:8080
}
handle_path /tmf-api/productOrderingManagement* {
reverse_proxy product-ordering-management:8080
}
handle_path /tmf-api/quoteManagement* {
reverse_proxy quote:8080
}
handle_path /tmf-api/resourceCatalog* {
reverse_proxy resource-catalog:8080
}
handle_path /tmf-api/resourceFunctionActivation* {
reverse_proxy resource-function-activation:8080
}
handle_path /tmf-api/resourceInventoryManagement* {
reverse_proxy resource-inventory:8080
}
handle_path /tmf-api/serviceCatalogManagement* {
reverse_proxy service-catalog:8080
}
handle_path /tmf-api/serviceInventory* {
reverse_proxy service-inventory:8080
}
handle_path /tmf-api/usageManagement* {
reverse_proxy usage-management:8080
}
handle_path /tmf-api/documentManagement* {
reverse_proxy document-management:8080
}
# DESMOS
handle_path /desmos* {
reverse_proxy desmos:8080
}
# Fallback
handle {
error "Not Found" 404
}
log {
output stdout
}
}