File tree 5 files changed +11
-12
lines changed
api-gateways/DevStore.Bff.Checkout
building-blocks/DevStore.WebAPI.Core/Configuration
web/DevStore.WebApp.Status
5 files changed +11
-12
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ server {
11
11
server_name $hostname;
12
12
13
13
location /status {
14
- rewrite ^/status(.*)$ http://localhost:7510/status $1 redirect;
14
+ rewrite ^/status(.*)$ http://localhost:7510/$1 redirect;
15
15
}
16
16
location / {
17
17
proxy_pass http://web-mvc;
@@ -40,7 +40,7 @@ server {
40
40
ssl_certificate /etc/nginx/nerdstore-certificate.pem;
41
41
ssl_certificate_key /etc/nginx/nerdstore-certificate.key;
42
42
location /status {
43
- rewrite ^/status(.*)$ https://localhost:7511/status $1 redirect;
43
+ rewrite ^/status(.*)$ https://localhost:7511/$1 redirect;
44
44
}
45
45
location / {
46
46
proxy_pass http://web-mvc;
Original file line number Diff line number Diff line change 23
23
}
24
24
},
25
25
26
- "ShoppingCartUrl" : " https://devstore- api-cart" ,
27
- "CatalogUrl" : " https://devstore- api-catalog" ,
28
- "CustomerUrl" : " https://devstore- api-customers" ,
29
- "PaymentUrl" : " https://devstore- api-billing" ,
30
- "OrderUrl" : " https://devstore- api-order" ,
26
+ "ShoppingCartUrl" : " https://api-cart" ,
27
+ "CatalogUrl" : " https://api-catalog" ,
28
+ "CustomerUrl" : " https://api-customers" ,
29
+ "PaymentUrl" : " https://api-billing" ,
30
+ "OrderUrl" : " https://api-order" ,
31
31
32
32
"MessageQueueConnection" : {
33
33
"MessageBus" : " host=devstore-rabbit:5672;publisherConfirms=true;timeout=30;username=devstore;password=devstore"
34
34
},
35
35
"AppSettings" : {
36
- "JwksUri" : " https://devstore- api-identity/jwks" ,
36
+ "JwksUri" : " https://api-identity/jwks" ,
37
37
"Issuer" : " https://devstore.academy" ,
38
38
"Audience" : " DevStore"
39
39
}
Original file line number Diff line number Diff line change 1
1
using DevStore . Core . Utils ;
2
2
using DevStore . WebAPI . Core . DatabaseFlavor ;
3
3
using EasyNetQ ;
4
- using EasyNetQ . ConnectionString ;
5
- using HealthChecks . RabbitMQ ;
6
4
using HealthChecks . UI . Client ;
7
5
using Microsoft . AspNetCore . Builder ;
8
6
using Microsoft . AspNetCore . Diagnostics . HealthChecks ;
Original file line number Diff line number Diff line change 62
62
app . MapHealthChecksUI ( setup =>
63
63
{
64
64
setup . AddCustomStylesheet ( "devstore.css" ) ;
65
- setup . UIPath = "/status" ;
65
+ setup . UIPath = "/" ;
66
+ setup . PageTitle = "DevStore - Status" ;
66
67
} ) ;
67
68
app . Run ( ) ;
Original file line number Diff line number Diff line change 20
20
"DefaultConnection" : " Server=database-status;Database=DSStatus;MultipleActiveResultSets=true;User Id=sa;Password=MyDB@123"
21
21
},
22
22
"ENDPOINTS" : [
23
- " Frontend Web;https://web-devstore-ecommerce/healthz-infra " ,
23
+ " Frontend Web;https://web-devstore-ecommerce/healthz" ,
24
24
" Identity API;https://api-identity/healthz-infra" ,
25
25
" BFF Checkout;https://api-bff-checkout/healthz-infra" ,
26
26
" Shopping Cart API;https://api-cart/healthz-infra" ,
You can’t perform that action at this time.
0 commit comments