Reputation: 16755
I have made a web application (Play Framework
, Cassandra
) which I'll not put in production on GCP
. However, I am not well versed with networking and systems administration. The application would be containerised and I'll use K8s
to create a cluster containing 2 pods for Play
web application and 3 pods for Cassandra
(for replication). There also be a load balancer service in front of the play
application.
DDOS
attack. How can I prevent it on GCP
?browser
and server
is not encrypted (eg. the passwords is being sent in plain text. Could could I enable encryption on GCP
?Upvotes: 0
Views: 156
Reputation: 803
Please find the below responses
https://cloud.google.com/files/GCPDDoSprotection-04122016.pdf, this can help you with DDOS protection. If you are using APIGEE, then APIGEE edge can also help you
you will have to install certificated in general and ensure that the data is sent over a https network. You can also try sslforfree
since you are using K8s to run cassandra please ensure you are using some sort of volumes to store the data.
Upvotes: 1