-
Notifications
You must be signed in to change notification settings - Fork 4
/
tye.yaml
91 lines (77 loc) · 1.97 KB
/
tye.yaml
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# tye application configuration file
# read all about it at https://github.com/dotnet/tye
#
# when you've given us a try, we'd love to know what you think:
# https://aka.ms/AA7q20u
#
name: udap
services:
- name: fhirlabsapi
project: examples/FhirLabsApi/FhirLabsApi.csproj
bindings:
- protocol: https
name: https
host: host.docker.internal
port: 7016
routes:
- /fhir/r4/.well-known/udap
- /fhir/r4/.well-known/udap/communities
- /fhir/r4/.well-known/udap/communities/ashtml
- name: udap-auth
project: examples/Udap.Auth.Server/Udap.Auth.Server.csproj
bindings:
- protocol: https
name: https
host: host.docker.internal
port: 5002
env:
- name: UdapIdpBaseUrl
value: https://host.docker.internal:5002
- name: udap-idp-1
project: examples/Udap.Identity.Provider/Udap.Identity.Provider.csproj
bindings:
- protocol: https
name: https
host: host.docker.internal
port: 5055
env:
- name: UdapIdpBaseUrl
value: https://host.docker.internal:5055
- name: udap-idp-2
project: examples/Udap.Identity.Provider.2/Udap.Identity.Provider.2.csproj
bindings:
- protocol: https
name: https
host: host.docker.internal
port: 5057
env:
- name: UdapIdpBaseUrl
value: https://host.docker.internal:5057
- name: certificate-server
project: examples/Udap.Certificates.Server/Udap.Certificates.Server.csproj
bindings:
- protocol: http
name: http
host: host.docker.internal
port: 5033
#- name: udap-idp-admin
# project: examples/Udap.Idp.Admin/Udap.Idp.Admin.csproj
# bindings:
# - protocol: https
# name: https
# host: host.docker.internal
# port: 7087
#- name: udap-ca
# project: examples/Udap.CA/Udap.CA.csproj
# bindings:
# - protocol: https
# name: https
# host: host.docker.internal
# port: 6061
- name: UdapEd
project: examples/clients/UdapEd/Server/UdapEd.Server.csproj
bindings:
- protocol: https
name: https
host: host.docker.internal
port: 7041