mirror of
https://github.com/serghey-rodin/vesta.git
synced 2026-09-10 20:20:10 +02:00
19 lines
460 B
PHP
19 lines
460 B
PHP
<?php
|
|
error_reporting(NULL);
|
|
$TAB = 'WEB';
|
|
|
|
// Main include
|
|
include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
|
|
|
|
// Data
|
|
exec (VESTA_CMD."v-list-web-domains $user json", $output, $return_var);
|
|
$data = json_decode(implode('', $output), true);
|
|
$data = array_reverse($data,true);
|
|
$ips = json_decode(shell_exec(VESTA_CMD.'v-list-sys-ips json'), true);
|
|
|
|
// Render page
|
|
render_page($user, $TAB, 'list_web');
|
|
|
|
// Back uri
|
|
$_SESSION['back'] = $_SERVER['REQUEST_URI'];
|