Tag

IP whitelist

1 views collected around this technical thread.

Practical DevOps Architecture
Practical DevOps Architecture
Mar 31, 2025 · Operations

Redirect HTTP to HTTPS and Configure IP Whitelist in Nginx

This guide shows how to rewrite Nginx port 80 requests to HTTPS on port 443, configure the HTTPS server block, and set up an IP whitelist with allow and deny directives to restrict access to specific clients.

HTTPSIP whitelistnginx
0 likes · 2 min read
Redirect HTTP to HTTPS and Configure IP Whitelist in Nginx
Java Architect Essentials
Java Architect Essentials
Oct 20, 2024 · Backend Development

Implementing IP Whitelist in Nginx and Spring Boot with a Custom HandlerInterceptor

This article demonstrates two practical methods for restricting request IPs—configuring allow/deny rules in Nginx and building a Spring Boot whitelist check using a custom HandlerInterceptor, complete with database schema, service logic, and MVC configuration.

Backend DevelopmentHandlerInterceptorIP whitelist
0 likes · 12 min read
Implementing IP Whitelist in Nginx and Spring Boot with a Custom HandlerInterceptor
Java Tech Enthusiast
Java Tech Enthusiast
May 5, 2024 · Information Security

Preventing Malicious API Abuse: Security Measures and Best Practices

To prevent malicious API abuse, implement layered defenses such as firewalls to block unwanted traffic, robust captchas and SMS verification, mandatory authentication with permission controls, IP whitelisting for critical endpoints, HTTPS encryption, strict rate‑limiting via Redis, continuous monitoring with alerts, and an API gateway that centralizes filtering, authentication and throttling.

API securityFirewallIP whitelist
0 likes · 9 min read
Preventing Malicious API Abuse: Security Measures and Best Practices
Architecture Digest
Architecture Digest
Dec 27, 2023 · Backend Development

Configuring IP Whitelist/Blacklist and Geo‑Based Access Control in Nginx

This article explains how to configure Nginx for IP whitelist/blacklist access control using the allow/deny directives, the ngx_http_geo_module for IP and country restrictions, and provides step-by-step examples, file setups, and GeoIP module installation for both Ubuntu and CentOS.

Access ControlIP blacklistIP whitelist
0 likes · 9 min read
Configuring IP Whitelist/Blacklist and Geo‑Based Access Control in Nginx
Top Architect
Top Architect
Oct 2, 2020 · Information Security

Designing Simple API Authentication for Internal Services

The article explores practical approaches for authenticating internal service APIs, comparing plain token usage, IP whitelisting, and salted signature schemes with timestamps, and explains their implementation details, security trade‑offs, and suitability for a B2B cloud‑operated platform.

API authenticationIP whitelistSignature
0 likes · 7 min read
Designing Simple API Authentication for Internal Services