minus-squareelbucho@lemmy.worldtoWeb Development@programming.dev•Regex and Nginx 😤 [solved]linkfedilinkEnglisharrow-up2·1 month agoYou aren’t escaping your periods. Try like this: location ~* \/(fileA|fileB)\.txt$ { return 404 'nothing here'; } linkfedilink
You aren’t escaping your periods. Try like this:
location ~* \/(fileA|fileB)\.txt$ { return 404 'nothing here'; }