move certs into secret file

This commit is contained in:
Florian Hoss 2022-04-24 18:28:41 +02:00
parent 80e1d1599d
commit 1b338ce065
10 changed files with 78 additions and 134 deletions

View file

@ -1,4 +1,5 @@
#include "theSecrets.h"
#include "theCerts.h"
#ifdef ESP32
#include "WiFi.h"
@ -29,7 +30,7 @@ void setup_wifi()
void setup()
{
setup_wifi();
firewall = new fw::Firewall(api_username, api_password, 8080);
firewall = new fw::Firewall(cert, key, username, password, 8080);
}
void loop()