diff options
author | Quentin <quentin@dufour.io> | 2023-04-19 13:11:46 +0000 |
---|---|---|
committer | Quentin <quentin@dufour.io> | 2023-04-19 13:11:46 +0000 |
commit | 1e75c21b65021da0c3c5a8be9be12114a2327464 (patch) | |
tree | 978a49da113a050c60bd8a803e0d641255f82ede /templates/garage_website_inspect.html | |
parent | 02670ba6a60af8db1818d6d3adaafc7810d14689 (diff) | |
parent | 83ed187dbc6d1ef5f08d74aa57a7d17e907581c9 (diff) | |
download | guichet-1e75c21b65021da0c3c5a8be9be12114a2327464.tar.gz guichet-1e75c21b65021da0c3c5a8be9be12114a2327464.zip |
Merge pull request 'Manage Garage Websites from Guichet' (#19) from website into main
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/guichet/pulls/19
Diffstat (limited to 'templates/garage_website_inspect.html')
-rw-r--r-- | templates/garage_website_inspect.html | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/templates/garage_website_inspect.html b/templates/garage_website_inspect.html new file mode 100644 index 0000000..bc60711 --- /dev/null +++ b/templates/garage_website_inspect.html @@ -0,0 +1,58 @@ +{{define "title"}}Inspecter le site web |{{end}} + +{{define "body"}} +<div class="d-flex"> + <h4>Inspecter le site web</h4> + <a class="ml-auto btn btn-link" href="/garage/key">Mes identifiants</a> + <a class="ml-4 btn btn-success" href="/garage/website/new">Nouveau site web</a> + <a class="ml-4 btn btn-info" href="/garage/website">Mes sites webs</a> +</div> + +<table class="table mt-4"> + <tbody> + <tr> + <th scope="row">ID</th> + <td>{{ .Bucket.Id }}</td> + </tr> + <tr> + <th scope="row">URLs</th> + <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> {{ .IndexDoc }}</td> + </tr> + <tr> + <th scope="row">Document d'erreur</th> + <td>{{ .ErrorDoc }}</td> + </tr> + <tr> + <th scope="row">Nombre de fichiers</th> + <td>{{ .Bucket.Objects }} / {{ .MaxObjects }}</td> + </tr> + <tr> + <th scope="row">Espace utilisé</th> + <td>{{ .Bucket.Bytes }} / {{ .MaxSize }} octets</td> + </tr> + </tbody> +</table> + +<h4>Configurer le nom de domaine</h4> + +{{ 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}} |