Git Product home page Git Product logo

grav-plugin-custom-http-headers's Introduction

Custom HTTP Headers Plugin

The Custom HTTP Headers Plugin is an extension for Grav CMS. Provides the ability add custom HTTP Headers for Content Security Policy (CSP), Cross Origin Resource Sharing (CORS), Referrer-Policy, Permissions Policy, and other security needs.

Installation

Installing the Custom HTTP Headers plugin can be done in one of three ways: The GPM (Grav Package Manager) installation method lets you quickly install the plugin with a simple terminal command, the manual method lets you do so via a zip file, and the admin method lets you do so via the Admin Plugin.

GPM Installation (Preferred)

To install the plugin via the GPM, through your system's terminal (also called the command line), navigate to the root of your Grav-installation, and enter:

bin/gpm install custom-http-headers

This will install the Custom HTTP Headers plugin into your /user/plugins-directory within Grav. Its files can be found under /your/site/grav/user/plugins/custom-http-headers.

Manual Installation

To install the plugin manually, download the zip-version of this repository and unzip it under /your/site/grav/user/plugins. Then rename the folder to custom-http-headers. You can find these files on GitHub or via GetGrav.org.

You should now have all the plugin files under

/your/site/grav/user/plugins/custom-http-headers

NOTE: This plugin is a modular component for Grav which may require other plugins to operate, please see its blueprints.yaml-file on GitHub.

Admin Plugin

If you use the Admin Plugin, you can install the plugin directly by browsing the Plugins-menu and clicking on the Add button.

Configuration

Before configuring this plugin, you should copy the user/plugins/custom-http-headers/custom-http-headers.yaml to user/config/plugins/custom-http-headers.yaml and only edit that copy.

Here is the default configuration and an explanation of available options:

enabled: true
enabled_in_admin: true
debug_headers: false
custom_headers:
  Content-Security-Policy: "upgrade-insecure-requests"
  Strict-Transport-Security: "max-age=2592000"
  X-Xss-Protection: "1; mode=block"
  X-Frame-Options: "DENY"
  X-Content-Type-Options: "nosniff"
  Referrer-Policy: "strict-origin-when-cross-origin"
  Permissions-Policy: "camera=(), geolocation=()"
remove_headers:
  - "Public-Key-Pins"
  - "X-Powered-By"

Note that if you use the Admin Plugin, a file with your configuration named custom-http-headers.yaml will be saved in the user/config/plugins/-folder once the configuration is saved in the Admin.

Page Configuration Overrides

You can override a specific header to add or remove by providing additional data in a page header. Use the header variagble custom_http_headers: to set these in combination with remove_headers to remove headeers, and/or custom_headers add them. These expect an array of header keys for removing, and an array of key/value pairs for adding headers.

For example to remove a specific header on a page:

yourpage.md

custom_http_headers:
    remove_headers: ['x-something']

or to add a couple:

yourpage.md

custom_http_headers:
    custom_headers:
      x-something: 'some value'
      another-header: 'another value'
      

Usage

Just enabling the plugin will allow it to respond to any request made through Grav. Please note that this will not add custom headers for any requests made directly to the websever. CSS and JS requests, most image requests etc. are not processed through Grav.

There are certain headers that might be modified by the webserver after the response has been generated. If you want complete control you should use the headers mechanisms in your webserver as this is ultimately what is responsible for sending the response headers for any requests made to it.

For more information on the various headers please check out:

Debugging

You can debug the headers by enabling the debug_headers: option in the settings. You must have the Grav debugger enabled and the resulting headers array will be displayed in teh Messages tab.

grav-plugin-custom-http-headers's People

Contributors

rhukster avatar zlfn avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.