Actions
User story #5183
closedMake Rudder Apache 2.4 compliant
Pull Request:
UX impact:
Suggestion strength:
User visibility:
Effort required:
Name check:
Fix check:
Regression:
Description
Especially in ubuntu 14.4
Updated by Matthieu CERDA about 10 years ago
- Subject changed from Http doesn't redirect to https with apache 2.4 to Rudder does not work properly with Apache 2.4
- Category set to System integration
- Status changed from New to 8
- Assignee set to Matthieu CERDA
- Priority changed from N/A to 2
Updated by Matthieu CERDA about 10 years ago
- Tracker changed from Bug to User story
- Subject changed from Rudder does not work properly with Apache 2.4 to Rudder needs to work properly with Apache 2.4+
- Status changed from 8 to 14
Updated by Jonathan CLARKE about 10 years ago
- Status changed from 14 to Pending release
- Target version set to 2.11.4
Updated by Dennis Cabooter about 10 years ago
After upgrading from 2.11.3 to 2.11.4 I had to do the following tasks:
# mv /etc/apache2/sites-available/rudder-vhost.dpkg-dist /etc/apache2/sites-available/rudder-vhost # mv /etc/apache2/sites-available/rudder-vhost-ssl.dpkg-dist /etc/apache2/sites-available/rudder-vhost-ssl # mv /opt/rudder/etc/rudder-apache-common.conf.dpkg-dist /opt/rudder/etc/rudder-apache-common.conf
This is really needed to not get a default Apache page:
# a2ensite default-ssl
# vim /etc/apache2/sites-available/rudder-vhost
ServerName rudder.example.com ServerAdmin info@example.com
# vim /etc/apache2/sites-available/rudder-vhost-ssl
ServerName rudder.example.com ServerAdmin info@example.com
And last but not least, you forgot one thing in /etc/apache2/sites-available/rudder-vhost-ssl.
Change this:
<Proxy http://localhost:8080/rudder*> Order deny,allow Allow from all </Proxy>
To this:
<Proxy http://localhost:8080/rudder*> <IfVersion < 2.4> Order deny,allow Allow From all </IfVersion> <IfVersion >= 2.4> Require all granted </IfVersion> </Proxy>
Updated by Vincent MEMBRÉ about 10 years ago
- Target version changed from 2.11.4 to 2.11.5
Updated by Vincent MEMBRÉ about 10 years ago
- Target version changed from 2.11.5 to 2.11.4
Updated by Vincent MEMBRÉ about 10 years ago
- Subject changed from Rudder needs to work properly with Apache 2.4+ to Make Rudder Apache 2.4 compliant
Updated by Vincent MEMBRÉ about 10 years ago
- Status changed from Pending release to Released
This bug has been fixed in Rudder 2.11.4, which was released today.
- Announcement
- Changelog
- Download information: https://www.rudder-project.org/site/get-rudder/downloads/
Actions