Deploy open-appsec directly on the web server hosting the application to protect
open-appsec instaltion
Install open-appsec for LinuxAdjustments for NGINX Hosting the Protected Website:
sudo nano /etc/nginx/nginx.confserver { listen 81; # Change this line to listen on port 81 ... }server { listen 444 ssl; # Change this line to listen on port 444 ... }server { listen 80; server_name your_domain.com; location / { proxy_pass http://localhost:81; # Forward traffic to port 81 ... } } server {listen 443 ssl; server_name your_domain.com; location / { proxy_pass https://localhost:444; # Forward traffic to port 444 ... } }sudo nginx -tsudo systemctl restart nginx
PreviousSELinux: checking status and disablingNextobject is locked or remote, and therefore cannot be modified
Last updated
Was this helpful?