diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/garage_website_inspect.html | 29 | ||||
-rw-r--r-- | templates/garage_website_new.html | 4 |
2 files changed, 24 insertions, 9 deletions
diff --git a/templates/garage_website_inspect.html b/templates/garage_website_inspect.html index fa8c737..bc60711 100644 --- a/templates/garage_website_inspect.html +++ b/templates/garage_website_inspect.html @@ -12,32 +12,47 @@ <tbody> <tr> <th scope="row">ID</th> - <td>afa8f0a22b40b1247ccd0affb869b0af5cff980924a20e4b5e0720a44deb8d39</td> + <td>{{ .Bucket.Id }}</td> </tr> <tr> <th scope="row">URLs</th> - <td>nix.web.deuxfleurs.fr</td> + <td> + {{ range $alias := .Bucket.GlobalAliases }} + {{ if contains $alias "." }} + https://{{ $alias }} + {{ else }} + https://{{ $alias }}.web.deuxfleurs.fr + {{ end }} + {{ end }} + </td> </tr> <tr> <th scope="row">Document d'index</th> - <td>index.html</td> + <td> {{ .IndexDoc }}</td> </tr> <tr> <th scope="row">Document d'erreur</th> - <td>error/400.html</td> + <td>{{ .ErrorDoc }}</td> </tr> <tr> <th scope="row">Nombre de fichiers</th> - <td>488/infini</td> + <td>{{ .Bucket.Objects }} / {{ .MaxObjects }}</td> </tr> <tr> <th scope="row">Espace utilisé</th> - <td>83216486/infini</td> + <td>{{ .Bucket.Bytes }} / {{ .MaxSize }} octets</td> </tr> </tbody> </table> <h4>Configurer le nom de domaine</h4> -<p>Le nom de domaine est géré par deuxfleurs, il n'y a rien à configurer.</p> +{{ range $alias := .Bucket.GlobalAliases }} +{{ if contains $alias "." }} +<p> Le nom de domaine {{ $alias }} n'est pas géré par Deuxfleurs, il vous revient donc de configurer la zone DNS. Vous devez ajouter une entrée <code>CNAME garage.deuxfleurs.fr</code> ou <code>ALIAS garage.deuxfleurs.fr</code> auprès de votre hébergeur DNS, qui est souvent aussi le bureau d'enregistrement (eg. Gandi, GoDaddy, BookMyName, etc.).</p> +{{ else }} +<p> Le nom de domaine https://{{ $alias }}.web.deuxfleurs.fr est fourni par Deuxfleurs, il n'y a pas de configuration à faire.</p> +{{ end }} +{{ end }} + {{end}} diff --git a/templates/garage_website_new.html b/templates/garage_website_new.html index e806c51..f1cd847 100644 --- a/templates/garage_website_new.html +++ b/templates/garage_website_new.html @@ -18,7 +18,7 @@ <div class="tab-content" id="protocols"> <div class="tab-pane fade show active" id="dnsint" role="tabpanel" aria-labelledby="dnsint-tab"> - <form method="POST" class="mt-4" enctype="multipart/form-data"> + <form method="POST" class="mt-4"> <div class="form-row"> <div class="form-group col-md-6"> <label for="bucket">Sous-domaine désiré :</label> @@ -36,7 +36,7 @@ </form> </div> <div class="tab-pane fade show" id="dnsext" role="tabpanel" aria-labelledby="dnsext-tab"> - <form method="POST" class="mt-4" enctype="multipart/form-data"> + <form method="POST" class="mt-4"> <div class="form-row"> <div class="form-group col-md-6"> <label for="bucket2">Votre nom de domaine :</label> |