diff options
| author | Paul Buetow <paul@buetow.org> | 2026-01-29 09:31:44 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-01-29 09:31:44 +0200 |
| commit | 7aaf44bd10d847420053fbef377468ef40fc1337 (patch) | |
| tree | 3cbc7833ebf1cd9dde99c48192459a2c02bed031 | |
| parent | 1a7a5ad9e8cb6300b6ec9c1d8a0e90f7b7e0aff7 (diff) | |
Fix redirect page for W3C compliance
Amp-Thread-ID: https://ampcode.com/threads/T-019c086d-c760-779d-b740-0f748094b62a
Co-authored-by: Amp <amp@ampcode.com>
| -rw-r--r-- | docker-image/Dockerfile | 2 | ||||
| -rw-r--r-- | docker-image/Justfile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docker-image/Dockerfile b/docker-image/Dockerfile index 98d3ead..00a212b 100644 --- a/docker-image/Dockerfile +++ b/docker-image/Dockerfile @@ -27,7 +27,7 @@ COPY index.pl /usr/local/apache2/cgi-bin/index.pl RUN chmod 755 /usr/local/apache2/cgi-bin/index.pl # Create a redirect from / to /cgi-bin/index.pl -RUN echo '<meta http-equiv="refresh" content="0;url=/cgi-bin/index.pl">' > /usr/local/apache2/htdocs/index.html +RUN echo '<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta http-equiv="refresh" content="0; url=/cgi-bin/index.pl"><title>Redirecting...</title></head><body><p>Redirecting to <a href="/cgi-bin/index.pl">IPv6 Test</a>...</p></body></html>' > /usr/local/apache2/htdocs/index.html EXPOSE 80 diff --git a/docker-image/Justfile b/docker-image/Justfile index f50ecca..5a8b49b 100644 --- a/docker-image/Justfile +++ b/docker-image/Justfile @@ -1,4 +1,4 @@ -VERSION := "1.5.0" +VERSION := "1.6.0" REGISTRY := "registry.lan.buetow.org:30001" IMAGE := "ipv6test" |
