Local Server Timeout (worked a while ago)

Hello,
basically i cannot connect with my ESP to my Blynk server :frowning:
Library Version 0.5.0 with Server Version 0.5.0
my code is this:

#define BLYNK_PRINT Serial

#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>

char auth[] = "censored";

char ssid[] = "100k";
char pass[] = "censored";

BLYNK_WRITE(V1)
{
  int pinValue = param.asInt();
  Serial.print("V1 value is: ");
  Serial.println(pinValue);
void setup()
{
  Serial.begin(9600);
  Blynk.begin(auth, ssid, pass, IPAddress(192,168,178,27), 8080);
  Serial.println("Done Setup.");
}

void loop()
{
  Blynk.run();
}

But all i get from the Serial Monitor is:

[612] Connecting to 192.168.178.27
[2661] Login timeout

Blynk server is up and running and i can login with admin account, tried to restart the server already: glascake.com/Blynk

could you provide the log of your local blynk server?