default.conf 205 B

12345678910
  1. server {
  2. listen 80 default;
  3. #allow 100.64.0.0/10;
  4. deny all;
  5. # 禁止IP访问及未绑定的域名跳转
  6. location = /healthz {
  7. access_log off;
  8. return 200;
  9. }
  10. }