Tell me more ×
Server Fault is a question and answer site for professional system and network administrators. It's 100% free, no registration required.

I am struggling with a redirection rule. I am now running my Redmine in webrick in port 3000 and proxy-pass it. The URL of my Redmine is xyz.example.com.

I also want to redirect the Redmine using the URL: abc.example.com. I added the server alias but no redirection taking place.

Here is my configuration:

<VirtualHost *:80>
  ServerName  xyz.example.com 
  ServerAlias     abc.examle.com 
  ProxyPass / h://local:3000/
  ProxyPassReverse / h://local:3000/
</VirtualHost>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.