Protect your web applications from unauthorized access with robust security protocols. This platform allows administrators to set strict access rules, ensuring that only authenticated users can reach sensitive endpoints. Advanced rule management lets you easily configure administrative rules to block malicious traffic and prevent unauthorized requests. With real-time monitoring, you can track access attempts and instantly identify forbidden requests to maintain optimal security. Furthermore, customizable permissions allow you to assign granular access rights to different user roles, keeping your internal data safe from external threats. Finally, automated threat response helps automatically block suspicious IP addresses and mitigate potential vulnerabilities before they affect your system. By implementing strict access controls, you reduce the risk of data breaches and maintain a secure environment for your legitimate users.
services:
samba:
image: crazy-max/samba:latest
container_name: samba
# Host networking is recommended for Service Discovery (NetBIOS) to work correctly.
# If host networking is not compatible with your environment, map ports 137-138/udp, 139/tcp, and 445/tcp.
network_mode: host
environment:
- TZ=UTC
- SAMBA_LOG_LEVEL=0
- SAMBA_USERS=${SAMBA_USERS}
- "SAMBA_VOLUME_CONFIG_public=[/shares/public]; guest ok = yes; read only = no; browseable = yes"
- "SAMBA_VOLUME_CONFIG_private=[/shares/private]; valid users = admin; guest ok = no; read only = no; browseable = yes"
volumes:
- "./shares/public:/shares/public"
- "./shares/private:/shares/private"
restart: always# Configure users and passwords.
# Format: user:password;user2:password2
SAMBA_USERS=admin:your_secure_passwordAuto-fetched about 17 hours ago
Auto-fetched about 17 hours ago