How to add WAF to an existing Nginx installation Hi all, Can anyone please help me install Ningx with Modsecurity / libmodsecurity3 to my existing Nginx installation on Ubuntu 20.04 without having to compile Nginx? In my opinion compiling Nginx makes updating / upgrading Nginx a nightmare, in my opinion compiling is not scalable and very prone to errors. I mean no offense, but trby Omly - How to...
Hi all, I got a flask server accepting only POST requests on https://domain.com:13000/data Can anyone help me redirect / proxy / map https://domain.com:13000/data to https://abc.domain.com subdomain? https://domain.com:15000/data to https://xyz.domain.com subdomain? I tried: if ($host = xyz.domain.com) { return 301 https://xyz.domain.com:13000/data; } This redirectsby Omly - Other discussion