From 674c38a54e0e1cb8d51705eca6228ca7dad1b399 Mon Sep 17 00:00:00 2001 From: Emmanuel Geoffray Date: Thu, 7 Dec 2017 20:14:20 +0100 Subject: [PATCH] Reset to default config --- includes/config.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/includes/config.php b/includes/config.php index 67a0b4cd..9ce3b835 100644 --- a/includes/config.php +++ b/includes/config.php @@ -3,7 +3,7 @@ define('RASPI_CONFIG', '/etc/raspap'); define('RASPI_CONFIG_NETWORKING',RASPI_CONFIG.'/networking'); define('RASPI_ADMIN_DETAILS', RASPI_CONFIG.'/raspap.auth'); -define('RASPI_WIFI_CLIENT_INTERFACE', 'wifiKey'); +define('RASPI_WIFI_CLIENT_INTERFACE', 'wlan0'); // Constants for configuration file paths. // These are typical for default RPi installs. Modify if needed. @@ -18,12 +18,12 @@ define('RASPI_OPENVPN_SERVER_CONFIG', '/etc/openvpn/server.conf'); define('RASPI_TORPROXY_CONFIG', '/etc/tor/torrc'); // Optional services, set to true to enable. -define('RASPI_HOTSPOT_ENABLED', false ); -define('RASPI_NETWORK_ENABLED', false ); -define('RASPI_DHCP_ENABLED', false ); +define('RASPI_HOTSPOT_ENABLED', true ); +define('RASPI_NETWORK_ENABLED', true ); +define('RASPI_DHCP_ENABLED', true ); define('RASPI_OPENVPN_ENABLED', false ); define('RASPI_TORPROXY_ENABLED', false ); -define('RASPI_CONFAUTH_ENABLED', false ); -define('RASPI_CHANGETHEME_ENABLED', false ); +define('RASPI_CONFAUTH_ENABLED', true ); +define('RASPI_CHANGETHEME_ENABLED', true ); ?>