How to check HTTP response code of a secured website with Nagios?

I have tried using check_http but I get success even if the website is redirected to an error page This can be solved with check_http –expect. Here is the documentation from check_http –help: -e, –expect=STRING Comma-delimited list of strings, at least one of them is expected in the first (status) line of the server response … Read more

What Does a Layer 3,4 Firewall do that a Layer 7 Does Not?

It sounds like you’re getting a bit of misleading jargon. The technical definitions for these types of firewalls are: Layer 3 firewalls (i.e. packet filtering firewalls) filter traffic based solely on source/destination IP, port, and protocol. Layer 4 firewalls do the above, plus add the ability to track active network connections, and allow/deny traffic based … Read more

No targets available when trying to set alias target from Route 53 to S3

The A-record alias you create has to be the same as the name of the bucket, because virtual hosting of buckets in S3 requires that the Host: header sent by the browser match the bucket name. There’s not really another practical way in which virtual hosting of buckets could be accomplished… the bucket has to … Read more

What are the advantages of putting secret values of a website as environment variables?

The author lists their reasoning, although it’s a bit disjoint. Their primary argument is that it’s easy to accidentally check in a config file, and that config files have varying formats and may be scattered around the system (all three of which are at best mediocre arguments for security related config like auth tokens and … Read more

Should my website have an IPv6 address?

Lack of IPv6 support on your site will hurt some of your users. According to stats published by Google 20-25% of users currently have IPv6. A large fraction of those users will need to go through some kind of NAT to reach IPv4-only services, which will make connectivity less reliable. The fraction of users without … Read more