diff --git a/.build/www/configuration/apache-configuration/sites-available/mutillidae.conf b/.build/www/configuration/apache-configuration/sites-available/mutillidae.conf
index e0a2845..3b72640 100644
--- a/.build/www/configuration/apache-configuration/sites-available/mutillidae.conf
+++ b/.build/www/configuration/apache-configuration/sites-available/mutillidae.conf
@@ -15,6 +15,9 @@
Require all granted
+ # Ensure Authorization header is passed to PHP
+ SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
+
ErrorLog ${APACHE_LOG_DIR}/mutillidae-error.log
CustomLog ${APACHE_LOG_DIR}/mutillidae-access.log combined
@@ -26,9 +29,9 @@
Include conf/headers.conf
Include conf/error-pages.conf
-
- DirectoryIndex index.php
-
+
+ DirectoryIndex index.php
+
AllowOverride All
@@ -36,6 +39,9 @@
Require all granted
+ # Ensure Authorization header is passed to PHP
+ SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
+
ErrorLog ${APACHE_LOG_DIR}/mutillidae-error.log
CustomLog ${APACHE_LOG_DIR}/mutillidae-access.log combined
@@ -52,9 +58,9 @@
DocumentRoot /var/www/mutillidae
Include conf/error-pages.conf
-
- DirectoryIndex index.php
-
+
+ DirectoryIndex index.php
+
AllowOverride All
@@ -62,6 +68,9 @@
Require all granted
+ # Ensure Authorization header is passed to PHP
+ SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
+
ErrorLog ${APACHE_LOG_DIR}/cors-mutillidae-error.log
CustomLog ${APACHE_LOG_DIR}/cors-mutillidae-access.log combined
@@ -72,9 +81,9 @@
DocumentRoot /var/www/mutillidae
Include conf/error-pages.conf
-
- DirectoryIndex index.php
-
+
+ DirectoryIndex index.php
+
AllowOverride All
@@ -82,6 +91,9 @@
Require all granted
+ # Ensure Authorization header is passed to PHP
+ SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
+
ErrorLog ${APACHE_LOG_DIR}/cors-mutillidae-error.log
CustomLog ${APACHE_LOG_DIR}/cors-mutillidae-access.log combined
@@ -91,3 +103,4 @@
SSLCertificateKeyFile /etc/ssl/private/mutillidae-selfsigned.key
SSLProtocol +TLSv1 +TLSv1.1 +TLSv1.2 +TLSv1.3
+
diff --git a/version b/version
index be1dcc8..ea2f1d3 100644
--- a/version
+++ b/version
@@ -1 +1 @@
-1.0.73
+1.0.74