Skip to content

Commit

Permalink
Adding index.html and expose more actuator endpoints to http
Browse files Browse the repository at this point in the history
  • Loading branch information
Thopap committed Apr 1, 2024
1 parent 3508c42 commit d6a1b0b
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,6 @@ xds.endpoint.iti8=xds-iti8:0.0.0.0:2575

fhir.server.profile.bootstrap=false

server.port=8081
server.port=8081

management.endpoints.web.exposure.include=health,info,configprops
45 changes: 45 additions & 0 deletions src/main/resources/public/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IHE XDS.b to FHIR adapter</title>
<style>
html,
body {
width: 100%;
height: 100%;
}

html {
display: table;
font-family: Lato, "Segoe UI", Avenir, Ubuntu, Tahoma, Verdana, Helvetica, sans-serif;
}

body {
display: table-cell;
vertical-align: middle;
text-align: center;
background-color: black;
}

h1 {
font-size: 4em;
font-weight: normal;
color: #ffffff;
}

a {
color: #ffffff;
}

</style>
</head>
<body>
<?xml version="1.0"?>
<img src="https://repository-images.githubusercontent.com/712084296/433c3ce1-92d3-4037-8d06-5cc171cafdfd" alt="xds-logo" />
<h1>IHE XDS.b to FHIR adapter</h1>
<a href="/services" >SOAP Service List</a></br>
<a href="https://github.com/oehf/xds-registry-to-fhir" >Github Project Page</a>
</body>
</html>

0 comments on commit d6a1b0b

Please sign in to comment.