Secure your network
Recommendations in securing your network to avoid back-doors and other vulnerabilities.
Kubernetes
Docker compose
// LeZa Proxy
proxy:
...
networks:
- my_network
- public
// Your applications, services and databases
app:
...
networks:
- my_network
service:
...
networks:
- my_network
database:
...
networks:
- my_network
// Your networks
networks:
public:
...
internal: false
my_network:
...
internal: trueAWS
Google Cloud
Azure
Digital Ocean
Last updated