mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-07-19 01:46:10 -04:00
Added support for DBIP
This commit is contained in:
@@ -22,7 +22,7 @@ Navigate to `dashboard.domain.com` from your LAN to view the dashboard.
|
|||||||
set $upstream_proto http;
|
set $upstream_proto http;
|
||||||
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
|
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
|
||||||
```
|
```
|
||||||
- [Swag Maxmind mod](https://github.com/linuxserver/docker-mods/tree/swag-maxmind) is required to enable the geo location graph
|
- Either [Swag Maxmind mod](https://github.com/linuxserver/docker-mods/tree/swag-maxmind) or [Swag DBIP mod](https://github.com/linuxserver/docker-mods/tree/swag-dbip) are required to enable the geo location graph.
|
||||||
|
|
||||||
# Example
|
# Example
|
||||||

|

|
||||||
|
|||||||
@@ -173,13 +173,29 @@
|
|||||||
HTML;
|
HTML;
|
||||||
}
|
}
|
||||||
|
|
||||||
$geodb = file_exists('/config/geoip2db/GeoLite2-City.mmdb') ? '--geoip-database=/config/geoip2db/GeoLite2-City.mmdb' : '';
|
function GetGoaccess() {
|
||||||
$goaccess = shell_exec("/usr/local/bin/goaccess -a -o html --config-file=/dashboard/goaccess.conf ".$geodb);
|
$dbip = '/config/geoip2db/dbip-country-lite.mmdb';
|
||||||
|
$maxmind = '/config/geoip2db/GeoLite2-City.mmdb';
|
||||||
|
if (file_exists($dbip) and file_exists($maxmind)):
|
||||||
|
$geodb = (filemtime($dbip) > filemtime($maxmind)) ? '--geoip-database='.$dbip : '--geoip-database='.$maxmind;
|
||||||
|
elseif (file_exists($dbip)):
|
||||||
|
$geodb = '--geoip-database='.$dbip;
|
||||||
|
elseif (file_exists($maxmind)):
|
||||||
|
$geodb = '--geoip-database='.$maxmind;
|
||||||
|
else:
|
||||||
|
$geodb = '';
|
||||||
|
endif;
|
||||||
|
|
||||||
|
$goaccess = shell_exec("/usr/local/bin/goaccess -a -o html --config-file=/dashboard/goaccess.conf ".$geodb);
|
||||||
|
$goaccess = str_replace("<title>Server Statistics", "<title>SWAG Dashboard", $goaccess);
|
||||||
|
$goaccess = str_replace("<h1 class='h-dashboard'>", "<h1>", $goaccess);
|
||||||
|
$goaccess = str_replace("<i class='fa fa-tachometer'></i>", "<img src='/icon.svg' width='32' height='32'> SWAG ", $goaccess);
|
||||||
|
$goaccess = preg_replace("/(<link rel='icon' )(.*?)(>)/", "<link rel='icon' type='image/svg+xml' href='/icon.svg'>", $goaccess);
|
||||||
|
return $goaccess;
|
||||||
|
}
|
||||||
|
|
||||||
|
$goaccess = GetGoaccess();
|
||||||
$status = GetHeader() . GetProxies() . GetF2B() . GetAnnouncements() . GetLinks() . '<div class="wrap-general">';
|
$status = GetHeader() . GetProxies() . GetF2B() . GetAnnouncements() . GetLinks() . '<div class="wrap-general">';
|
||||||
$page = str_replace("<div class='wrap-general'>", $status, $goaccess);
|
$page = str_replace("<div class='wrap-general'>", $status, $goaccess);
|
||||||
$page = str_replace("<title>Server Statistics", "<title>SWAG Dashboard", $page);
|
|
||||||
$page = str_replace("<h1 class='h-dashboard'>", "<h1>", $page);
|
|
||||||
$page = str_replace("<i class='fa fa-tachometer'></i>", "<img src='/icon.svg' width='32' height='32'> SWAG ", $page);
|
|
||||||
$page = preg_replace("/(<link rel='icon' )(.*?)(>)/", "<link rel='icon' type='image/svg+xml' href='/icon.svg'>", $page);
|
|
||||||
echo $page;
|
echo $page;
|
||||||
?>
|
?>
|
||||||
|
|||||||
Reference in New Issue
Block a user