2023-05-25 11:13:43 +02:00
|
|
|
<!DOCTYPE html>
|
2025-04-18 10:57:05 +02:00
|
|
|
<html{if="$language !=='auto'"} lang=" {$language}"{/if}>
|
2023-05-25 11:13:43 +02:00
|
|
|
|
2025-04-18 10:57:05 +02:00
|
|
|
<head>
|
|
|
|
{include="includes"}
|
|
|
|
</head>
|
2023-05-25 11:13:43 +02:00
|
|
|
|
2025-04-18 10:57:05 +02:00
|
|
|
<body>
|
|
|
|
{include="page.header"}
|
|
|
|
<section>
|
|
|
|
<h2>{'Server administration'|t}</h2>
|
2023-05-25 11:13:43 +02:00
|
|
|
|
2025-04-18 10:57:05 +02:00
|
|
|
<article>
|
|
|
|
<h3>{'General'|t}</h3>
|
|
|
|
|
|
|
|
<p>{'Index URL'|t} : <a href="{$index_url}" title="{$pagetitle}">{$index_url}</a></p>
|
|
|
|
<p>{'Base path'|t} : {$base_path}</p>
|
|
|
|
<p>{'Client IP'|t} : {$client_ip}</p>
|
|
|
|
<p>{'Trusted reverse proxies'|t} :
|
|
|
|
{if="count($trusted_proxies) > 0"}
|
|
|
|
<ul>
|
2023-05-25 11:13:43 +02:00
|
|
|
{loop="$trusted_proxies"}
|
2025-04-18 10:57:05 +02:00
|
|
|
<li>{$value}</li>
|
2023-05-25 11:13:43 +02:00
|
|
|
{/loop}
|
2025-04-18 10:57:05 +02:00
|
|
|
</ul>
|
2023-05-25 11:13:43 +02:00
|
|
|
{else}
|
2025-04-18 10:57:05 +02:00
|
|
|
{'N/A'|t}
|
2023-05-25 11:13:43 +02:00
|
|
|
{/if}
|
2025-04-18 10:57:05 +02:00
|
|
|
</p>
|
|
|
|
</article>
|
2023-05-25 11:13:43 +02:00
|
|
|
|
2025-04-18 10:57:05 +02:00
|
|
|
{include="server.requirements"}
|
|
|
|
<article>
|
|
|
|
<h3>{'Version'|t}</h3>
|
|
|
|
<p>{'Current version'|t} : {$current_version}</p>
|
|
|
|
<p>{'Latest release'|t} : <a href="{$release_url}"
|
|
|
|
title="{'Visit releases page on Github'|t}">{$latest_version}</a>
|
2023-05-25 11:13:43 +02:00
|
|
|
</p>
|
2025-04-18 10:57:05 +02:00
|
|
|
</article>
|
2023-05-25 11:13:43 +02:00
|
|
|
|
2025-04-18 10:57:05 +02:00
|
|
|
<article>
|
|
|
|
<h3>{'Thumbnails'|t}</h3>
|
2023-05-25 11:13:43 +02:00
|
|
|
|
2025-04-18 10:57:05 +02:00
|
|
|
<p>{'Thumbnails status'|t} :
|
2023-05-25 11:13:43 +02:00
|
|
|
{if="$thumbnails_mode==='all'"}
|
2025-04-18 10:57:05 +02:00
|
|
|
{'All'|t}
|
2023-05-25 11:13:43 +02:00
|
|
|
{elseif="$thumbnails_mode==='common'"}
|
2025-04-18 10:57:05 +02:00
|
|
|
{'Only common media hosts'|t}
|
2023-05-25 11:13:43 +02:00
|
|
|
{else}
|
2025-04-18 10:57:05 +02:00
|
|
|
{'None'|t}
|
2023-05-25 11:13:43 +02:00
|
|
|
{/if}
|
|
|
|
</p>
|
2025-04-18 10:57:05 +02:00
|
|
|
{if="$thumbnails_mode!=='none'"}
|
|
|
|
<p class="flex-center flex">
|
|
|
|
<a role="button" href="{$base_path}/admin/thumbnails" title="{'Synchronize all link thumbnails'|t}">
|
|
|
|
{'Synchronize thumbnails'|t}
|
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
{/if}
|
|
|
|
</article>
|
2023-05-25 11:13:43 +02:00
|
|
|
|
2025-04-18 10:57:05 +02:00
|
|
|
<article>
|
|
|
|
<h3>{'Cache'|t}</h3>
|
|
|
|
<p class="flex-center flex">
|
|
|
|
<a role="button" href="{$base_path}/admin/clear-cache?type=main">
|
|
|
|
{'Clear main cache'|t}
|
|
|
|
</a>
|
|
|
|
<a role="button" href="{$base_path}/admin/clear-cache?type=thumbnails">
|
|
|
|
{'Clear thumbnails cache'|t}
|
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
</article>
|
|
|
|
</section>
|
2023-05-25 11:13:43 +02:00
|
|
|
|
2025-04-18 10:57:05 +02:00
|
|
|
{include="page.footer"}
|
2023-05-25 11:13:43 +02:00
|
|
|
|
2025-04-18 10:57:05 +02:00
|
|
|
</body>
|
2023-05-25 11:13:43 +02:00
|
|
|
|
2025-04-18 10:57:05 +02:00
|
|
|
</html>
|