Giving Users Easier Access to iFolder with VirtualHost
Novell Cool Solutions: Tip
By Lupe Silva
|
Digg This -
Slashdot This
Posted: 24 Mar 2003 |
I have NW6 Small Business Suite, and installed iFolder and NetStorage on the same server. Because of that, the default IP port for iFolder is 52080 and 52443. I wanted to make it easier for my end users to remember how to get to their iFolders (going to http://ifolder.domain.com instead of http://server.domain.com:52080).
SOLUTION: We have a linux server for our firewall and use apache for the web server on it. Within apache I used VirtualHost and ProxyReverse to do this. After setting up VirtualHost in Apache, I added the following lines to http.conf:
<VirtualHost *:80>
ServerName ifolder.domain.com
ProxyPass / http://192.168.1.2:52080/
ProxyPassReverse / http://192.168.1.2:52080/
</VirtualHost>
This works great with the iFolder client.
This solution was on a linux server with apache and I assume that it will work on any server running apache.
If you have any questions you may contact Lupe at lsilva@qnetis.com
| submit a tip | |
Here's a chance to share your experiences using Novell Small Business Suite. Just send us a tip about using (or installing, deploying, troubleshooting, etc.) NSBS, and if it looks like something we can use, we'll send you a Novell t-shirt, post your tip, and make you famous beyond your tamest dreams. Submit your tip here: http://www.novell.com/coolsolutions/forms/submit_a_tip.html
Novell Cool Solutions (corporate web communities) are produced by WebWise Solutions. www.webwiseone.com

