Skip to content

Commit

Permalink
Merge pull request #8 from DIVD-NL/fix_vhosting
Browse files Browse the repository at this point in the history
Fix vhosting issues
  • Loading branch information
cookiemonster authored Jun 8, 2024
2 parents fb5da39 + 66e1d97 commit a223db0
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions deploy/.htaccess
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]

0 comments on commit a223db0

Please sign in to comment.