Nginx配置禁止远程访问swagger、xrebel、druid

  • Post author:
  • Post category:其他


Nginx配置禁止远程访问swagger

server {
		# 禁止远程访问swagger,xrebel等
        location ~ /api-docs {
            return 403 FORBIDDEN!;
        }
        location ~ /swagger-ui.html {
            return 403 FORBIDDEN!;
        }
        location ~ /rebel {
            return 403 FORBIDDEN!;
        }
		location ~ /druid/ {
            return 403 FORBIDDEN!;
        }
}

在这里插入图片描述

附:Nginx通配符


=

:精确匹配


^~

:前缀匹配


~



~*

:正则匹配