Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add security headers to nginx config #1244

Merged
merged 3 commits into from
May 14, 2020
Merged

Add security headers to nginx config #1244

merged 3 commits into from
May 14, 2020

Commits on Apr 24, 2020

  1. Add security headers to nginx config

    Increase the security of the nginx server and the served page, by adding the following security headers to the nginx config:
    - X-Frame-Options (Disables click jacking by disallowing the page to be run in a frame/iframe)
    - X-XSS-Protection (Enables cross site scripting filtering)
    - X-Content-Type-Options (Disables MIME sniffing and forces browser to use the type given in Content-Type.)
    - Content-Security-Policy (Controls resources the user agent is allowed to load for a given page.)
    - Referrer-Policy (Governs which referrer information sent in the Referer header should be included with requests made.)
    
    Additional headers that could be added optionally:
    - Strict-Transport-Security (Enforce HTTPS over HTTP)
    Dalabad authored Apr 24, 2020
    Configuration menu
    Copy the full SHA
    e3117c0 View commit details
    Browse the repository at this point in the history

Commits on May 11, 2020

  1. Configuration menu
    Copy the full SHA
    6d34748 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c6c1991 View commit details
    Browse the repository at this point in the history