diff options
author | Georg Pfuetzenreuter | 2023-05-01 00:00:31 +0200 |
---|---|---|
committer | Georg Pfuetzenreuter | 2023-05-01 00:00:31 +0200 |
commit | 841317e0f4bc1f429055b320c0008097d5e82842 (patch) | |
tree | 1dd4f7a9c3d5ed36322408f9c0430917070b0ba7 | |
parent | 5f1793547b91fc0cc93b82feec512b953a6d7f45 (diff) | |
download | salt-841317e0f4bc1f429055b320c0008097d5e82842.tar.gz salt-841317e0f4bc1f429055b320c0008097d5e82842.tar.bz2 salt-841317e0f4bc1f429055b320c0008097d5e82842.zip |
Repair BookStack httpd configuration
- Replace wrong instances of RewriteCond with RewriteRule
- Remove wrong quotes around rewrite conditions
- Set correct options (seemingly our version of httpd does not set
FollowSymLinks by default?)
Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
-rw-r--r-- | pillar/id/themis_lysergic_dev.sls | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/pillar/id/themis_lysergic_dev.sls b/pillar/id/themis_lysergic_dev.sls index 5c3df5e..9078fe1 100644 --- a/pillar/id/themis_lysergic_dev.sls +++ b/pillar/id/themis_lysergic_dev.sls @@ -25,19 +25,19 @@ apache: DirectoryIndex: index.php Directory: /srv/www/BookStack/: - Options: false + Options: FollowSymLinks AllowOverride: None Require: all granted Formula_Append: | RewriteEngine On - RewriteCond '%{HTTP:Authorization} .' - RewriteCond '.* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]' - RewriteCond '%{REQUEST_FILENAME} !-d' - RewriteCond '%{REQUEST_URI} (.+)/$' - RewriteCond '^ %1 [L,R=301]' - RewriteCond '%{REQUEST_FILENAME} !-d' - RewriteCond '%{REQUEST_FILENAME} !-f' - RewriteCond '^ index.php [L]' + RewriteCond %{HTTP:Authorization} . + RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_URI} (.+)/$ + RewriteRule ^ %1 [L,R=301] + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_FILENAME} !-f + RewriteRule ^ index.php [L] {{ httpdformulaexcess() }} Formula_Append: | {{ httpdcommon('BookStack') }} |