主页

Spring Cron常见表达式

每分钟@Scheduled(cron = “0 * * * * *”) 每10秒@Scheduled(cron = “*/10 * * * * *”) 每5分钟@Scheduled(cron = “0 0/5 * * * ?”) 子夜@Scheduled(cron = “0 0 0 * * *”) 每天6点@Scheduled(cron = “0 0 6 * * *”) 每月1号凌晨1点执行一次@

Nginx限制IP访问

先做一个clientRealIp变量,clientRealIp用http_x_forwarded_for的第一个IP 1234map $http_x_forwarded_for $clientRealIp { "" $remote_addr; ~^(?P<firstAddr>[0-9\.]+),?.*$ $firs