Nextcloud setup blocked by Google

Google ran over my nextcloud (26.0.2) site (https://liwuest.net) and banned it as phishing site due to the following causes:

  • Using outdated jQuery
  • Deprecations (Backbone, Handlebars)
  • Proxying version mismatches

I use nextcloud in docker, here is the respective docker snipet:

nextcloud:
image: nextcloud:26.0.2
restart: always
environment:
- PHP_MEMORY_LIMIT=2G
- PHP_UPLOAD_LIMIT=100G
volumes:
- …:/var/www/html
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_healthy

I asked google to revalidate my page and they confirm that the nextcloud I have pulled from Docker is suspicious for phishing because of the above failures.

For whatever reason, Google removed the phishing suspicion complaint last night.

I did not make any changes, nor did I made a request. Seems that this is “randomness of Internet-Gods” :slight_smile:

1 Like