http to https changed in API page
All checks were successful
/ push_to_registry (push) Successful in 51s

This commit is contained in:
2026-02-02 21:32:30 +01:00
parent 8b93585422
commit 9a906ec55c

View File

@@ -119,7 +119,7 @@ func helpHandler(w http.ResponseWriter, r *http.Request) {
<script>
// Dynamisch den aktuellen Hostnamen ermitteln
const currentHost = window.location.host;
const apiEndpoint = "http://" + currentHost + "/api/password";
const apiEndpoint = "https://" + currentHost + "/api/password";
// Hostnamen in die Beispiele eintragen
document.getElementById("api-endpoint").textContent = apiEndpoint;