-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from DIVD-NL/fix_vhosting
Fix vhosting issues
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,35 @@ | ||
# Detect HTTPS | ||
|
||
SetEnvIfNoCase X-HTTPS-Session Yes is_ssl=yes | ||
SetEnvIfNoCase X-HTTPS-Session Yes is_https=yes | ||
SetEnvIfNoCase X-HTTPS-Session Yes HTTPS=on | ||
|
||
# Security headers | ||
|
||
Header always set Strict-Transport-Security "max-age=63072000; includeSubdomains;" | ||
Header always append X-Frame-Options DENY | ||
Header set X-Content-Type-Options nosniff | ||
Header set X-XSS-Protection "1; mode=block" | ||
Header set Content-Security-Policy "default-src 'none'; font-src 'self'; img-src 'self'; script-src 'self'; style-src 'self'; connect-src 'self';" | ||
|
||
Header always set Referrer-Policy "same-origin" | ||
|
||
# Error document | ||
ErrorDocument 404 /404.html | ||
|
||
# Redirect http -> https | ||
RewriteCond %{HTTP:X-HTTPS-SESSION} !^yes$ | ||
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301,QSA] | ||
|
||
# Block requests not for divd.club | ||
RewriteCond %{HTTP_HOST} !^www.divd.nl | ||
RewriteRule (.*) - [r=404] | ||
|
||
# Handle requests to directories without trailing slash | ||
RewriteCond %{REQUEST_FILENAME} -d | ||
RewriteRule (.*[^\/])$ https://www.divd.club/$1/ [L,r=301,QSA] | ||
|
||
# Redirect requests directly to https://csirt.divd.nl/csirt-divd-nl/... | ||
RewriteCond %{THE_REQUEST} ^\w+\s+/?divd-club | ||
RewriteRule (.*) https://www.divd.club/$1 [L,r=301,QSA] | ||
|