13 lines
358 B
HTML
13 lines
358 B
HTML
hello from nginx!
|
|
|
|
<button onclick="goToApp('java')">Go to Java</button>
|
|
<button onclick="goToApp('dotnet')">Go to .NET</button>
|
|
<script>
|
|
function goToApp(appName) {
|
|
fetch("/", {
|
|
headers: { "X-App-Type": appName },
|
|
})
|
|
.then((r) => r.text())
|
|
.then((t) => (document.body.innerHTML = t));
|
|
}
|
|
</script>
|