Re: Apache

2003-12-10 Thread staf wagemakers
On Tue, Dec 09, 2003 at 04:51:24PM -0500, Payne wrote:
 
 Thanks, yes FreeBSD rocks!!! I know this is the right place to ask, so 
 if you have the apache group list that would be nice, but what do I have 
 to do to get my users account to work? Are they place for example
 
 /home/user_x/public_html
 
 On any web browser I get the following error.
 
 Forbidden
 
 You don't have permission to access /~user_x/ on this server.
 
 On my linux server this is already turn on so I am little lost.


For http://server/~user support you need to load the apache's mod_user 
in your httpd.conf see http://www.apache.org for more info.

The apache user (typically nobody or www-data ) must have read permissions 
on the ~/public_html directory. DirectoryListing is disabled by default so 
if you want to show the directory listing when the index.html is missing 
you'll need to enable it with options +Indexes

example:

Directory /home/*/public_html
options Indexes
/Directory

will enable directory listing for all users homepages.

-- 
Staf Wagemakers

email:  [EMAIL PROTECTED]
homepage:   http://staf.patat.org

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: cvsup behind http proxy

2003-12-10 Thread staf wagemakers
On Wed, Dec 10, 2003 at 10:14:14PM +, Feroz F. Basir wrote:
 
 anybody ever cvsup behind http proxy? The only way to
 go out (internet) is going through http proxy. And
 this http require authentication as well. Any ideas?
 
 Thank you in advance.


Try to set HTTP_PROXY  HTTP_AUTH variable:

# HTTP_PROXY=your.proxy
# HTTP_AUTH=login:pass
# export HTTP_PROXY HTTP_AUTH
# cvsup -L 2 my_supfile

-- 
Staf Wagemakers

email:  [EMAIL PROTECTED]
homepage:   http://staf.patat.org

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: export PATH ???

2003-12-09 Thread staf wagemakers
On Tue, Dec 09, 2003 at 11:06:44AM -0500, Xpression wrote:
 Hi again list, I've posted a question recently about
 uninstalling packages, in fact, when I installing changin
 the prefix path (eg.--prefix=/usr/local/package_name) it
 creates me some subdirs. The trouble is that I can't execute
 any installed program, until I put, for example: cd
 /usr/local/package_name/bin  ./program, anyone with this
 issue ??? Thanks...

If you're using csh, type rehash before you run a new installed 
program. Lookat man csh for more information.

-- 
Staf Wagemakers

email:  [EMAIL PROTECTED]
homepage:   http://staf.patat.org

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]