blob: 4f4c26856cbd750b8ca1ebd73b96af1d2cea4735 (
plain) (
tree)
|
|
<VirtualHost *:8302>
ServerName kanboard
UseCanonicalName on
DocumentRoot /var/www/kanboard
DirectoryIndex index.php index.html
# To cirkumvent phps $_SERVER['HTTPS']-check
SetEnv HTTPS "on"
AcceptPathInfo On
# Trust the remote user forwarded by nginx
SetEnvIf X-Forwarded-User (.*) REMOTE_USER=$1
<Directory /var/www/kanboard/>
AllowOverride FileInfo Options=All,MultiViews AuthConfig
</Directory>
</VirtualHost>
|