#visudo
<?php
$output = shell_exec('sudo /usr/bin/systemctl restart wg-quick@wghub');
echo "<pre>$output</pre>";
?>
=
:server {
listen 8083;
root /www;
location = / {
# отдаём файл index.html
rewrite ^ /index.html break;
}
# всё остальное проксируем
location / {
proxy_pass http://localhost:8082;
...
}
}
$ apt show iwd