Files
raspap-webgui/ajax/networking/get_wgcfg.php
2021-03-15 10:11:36 +00:00

10 lines
205 B
PHP

<?php
require '../../includes/csrf.php';
require_once '../../includes/config.php';
// fetch wg client.conf
exec('sudo cat '. RASPI_WIREGUARD_PATH.'client.conf', $return);
echo implode(PHP_EOL,$return);