Apache

How to configure Security Headers in Apache

Enable HSTS Header set Strict-Transport-Security “max-age=31536000; includeSubDomains; preload” Enable X-Frame-Options Header always append X-Frame-Options SAMEORIGIN Enable X-XSS-Protection Header set X-XSS-Protection “1; mode=block”…

Apache Location

To only allow requests from a specific IP to a location, use Require ip 59.92.71.53 51.38.246.115 Require ip 59.92.71.53 51.38.246.115 Add custom…

Apache Proxy

To proxy requests in Apache For proxying HTTPS traffic, use If remote SSL is invalid, you can disable SSL verification You need…