Revision f92b0d6f
Added by David Sorber almost 4 years ago
| configs/phalanx/apache/main.conf | ||
|---|---|---|
|
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
|
||
| ... | ... | |
|
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>
|
||
|
|
||
Correcting longstanding issue with Redmine/NextCloud Apache config.