commit f92b0d6f284b4e851493e776ba84ad75b483badd
Author: David Sorber <david.sorber@gmail.com>
Date:   Mon Aug 15 17:50:08 2022 -0400

    Correcting longstanding issue with Redmine/NextCloud Apache config.

diff --git a/configs/phalanx/apache/main.conf b/configs/phalanx/apache/main.conf
index 667d5d9..4748e77 100644
--- a/configs/phalanx/apache/main.conf
+++ b/configs/phalanx/apache/main.conf
@@ -38,23 +38,12 @@
         SSLProtocol -all +TLSv1.3
         SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
 
-        # --- Redmine ---------------------------------------------------
-        PassengerAppRoot /srv/redmine
-        RailsBaseURI /redmine
-        Alias /redmine /var/www/redmine
-        <Directory /var/www/redmine>
-                Options Indexes FollowSymLinks MultiViews
-                AllowOverride None
-                Order allow,deny
-                allow from all
-                RailsBaseURI /redmine
-        </Directory>
-
         # --- Nextcloud ------------------------------------------------
-        Alias /nextcloud "/var/www/nextcloud/"
+        Alias /nextcloud/ "/var/www/nextcloud/"
         <Directory /var/www/nextcloud/>
-                Options +FollowSymlinks
+                Require all granted
                 AllowOverride All
+                Options FollowSymLinks MultiViews
 
                 <IfModule mod_dav.c>
                         Dav off
@@ -68,4 +57,16 @@
                 SetEnv HTTP_HOME /var/www/nextcloud
         </Directory>
 
+        # --- Redmine ---------------------------------------------------
+        Alias /redmine /var/www/redmine/
+        <Directory /var/www/redmine/>
+                Options Indexes FollowSymLinks MultiViews
+                AllowOverride None
+                Order allow,deny
+                allow from all
+                PassengerAppRoot /srv/redmine
+                RailsBaseURI /redmine
+        </Directory>
+
 </VirtualHost>
+
