Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

9 total results found

Microsoft IIS webserver

Strict-Transport-Security Header Not Set

Start the application named: IIS Manager. Select your website On the right part of the screen, access the option named: HTTP Response Headers. On the top right part of the screen, click on the Add option. To enable the HSTS feature, enter the following...

Nginx webserver

Strict-Transport-Security Header Not Set

In your nginx.conf file add: add-header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload";

Apache webserver

Strict-Transport-Security Header Not Set

Make sure that the headers module is loaded: sudo a2enmod headers  Add the following code to the apache2.conf file: <IfModule mod_headers.c>        Header always set Strict-Transport-Security "max-age=31536000; includeSubDomains; preload"</IfModule>

Microsoft IIS webserver

Missing Anti-clickjacking Header

Start the application named: IIS Manager. Select your website On the right part of the screen, access the option named: HTTP Response Headers. On the top right part of the screen, click on the Add option. To enable the anti clickjacking feature, enter ...

Nginx webserver

Missing Anti-clickjacking Header

In your nginx.conf file add: add-header X-Frame-Options "SAMEORIGIN";

Apache webserver

Missing Anti-clickjacking Header

Make sure that the headers module is loaded: sudo a2enmod headers  Add the following code to the apache2.conf file: <IfModule mod_headers.c>        Header always set X-Frame-Options "SAMEORIGIN"</IfModule>

Microsoft IIS webserver

X-Content-Type-Options Header Missing

Start the application named: IIS Manager. Select your website On the right part of the screen, access the option named: HTTP Response Headers. On the top right part of the screen, click on the Add option. To enable the X-Content-Type-Options header, en...

Nginx webserver

X-Content-Type-Options Header Missing

In your nginx.conf file add: add-header X-Content-Type-Options "nosniff";

Apache webserver

X-Content-Type-Options Header Missing

Make sure that the headers module is loaded: sudo a2enmod headers  Add the following code to the apache2.conf file: <IfModule mod_headers.c>        Header always set X-Content-Type-Options "nosniff"</IfModule>