Currently we have a discussion forum at:
https://server.fogbugz.com/default.asp?forum
Can we use our own domain name? Such as
http://discuss.mycompany.com/default.asp?forum
|
3
2
|
Currently we have a discussion forum at: https://server.fogbugz.com/default.asp?forum Can we use our own domain name? Such as http://discuss.mycompany.com/default.asp?forum |
||||||||
|
|
2
|
Steps from suggested article ProxyPass for FogBugz On Demand with Your URL work fine. I want to provide few enhancements here. First of all, you not only needs mod_proxy module, but also mod_proxy_http module. This module allows Apache to talk to remote servers via HTTP. By default, Apache will not allow proxying for anybody. To enable it, use
inside your VirtualHost declaration. Although Furthermore, you might want to redirect requests from FogBugz root to your discussion forum:
These two rules will redirect requests to |
||||||
|
|
0
|
Today I found that GoogleBot accessed a lot of pages on my discussion forum, especially files in /help. It's not really helpful to have this accessed / indexed, so I decided to sent small I've commented out my previous
and added these rewrite rules:
First rule simply allows sending robots.txt from my own server, while second one does the proxying (replacing commented My entire configuration now looks like this:
My
|
|||
|
|