1
0
mirror of https://github.com/billz/raspap-webgui.git synced 2025-05-18 14:04:51 +02:00
RaspAP/ajax/networking/get_wgcfg.php

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);