Reset to default config

This commit is contained in:
Emmanuel Geoffray 2017-12-07 20:14:20 +01:00 committed by GitHub
parent 3bcf16a3ba
commit 674c38a54e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

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