mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-21 23:20:22 +00:00
Removed (deprecated)
This commit is contained in:
parent
6b3455345d
commit
316543cfa7
1 changed files with 0 additions and 50 deletions
|
@ -1,50 +0,0 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Manage Tor Proxy configuration
|
||||
*/
|
||||
function DisplayTorProxyConfig()
|
||||
{
|
||||
|
||||
exec('cat '. RASPI_TORPROXY_CONFIG, $return);
|
||||
exec('pidof tor | wc -l', $torproxystatus);
|
||||
|
||||
$arrConfig = array();
|
||||
foreach ($return as $a) {
|
||||
if ($a[0] != "#") {
|
||||
$arrLine = explode(" ", $a);
|
||||
$arrConfig[$arrLine[0]]=$arrLine[1];
|
||||
}
|
||||
}
|
||||
|
||||
echo renderTemplate(
|
||||
"torproxy", compact(
|
||||
"status",
|
||||
"torproxystatus"
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
*/
|
||||
function SaveTORAndVPNConfig()
|
||||
{
|
||||
if (isset($_POST['SaveTORProxySettings'])) {
|
||||
// TODO
|
||||
} elseif (isset($_POST['StartTOR'])) {
|
||||
echo "Attempting to start TOR";
|
||||
exec('sudo systemctl start tor.service', $return);
|
||||
foreach ($return as $line) {
|
||||
$status->addMessage($line, 'info');
|
||||
}
|
||||
} elseif (isset($_POST['StopTOR'])) {
|
||||
echo "Attempting to stop TOR";
|
||||
exec('sudo systemctl stop tor.service', $return);
|
||||
foreach ($return as $line) {
|
||||
$status->addMessage($line, 'info');
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
Loading…
Reference in a new issue