Page 1 of 1

Apache Authentification

Posted: Fri Jul 07, 2006 3:57 pm
by Suleman.Khalil
Hello,
i find hidden files by,
#>ls -ah ( comands show hidden files)

but how can i find all hidden starting from /.
&

from where i set user authentification "username and password" in Apache 2.0

Posted: Fri Jul 07, 2006 7:11 pm
by lambda
there are no "hidden" files in unix. there are dot files, which show up when you use "ls -a". to find all dot files, type

Code: Select all

find / -type f -name '.*' -print
there is a howto for setting up authentication in apache at http://httpd.apache.org/docs/2.0/ (on the right side of the page).

no, wait, i have a better idea, just install suse, it'll automatically set everything up for just the way you want it. it'll even feed your pets.

Re: Apache Authentification

Posted: Sat Jul 08, 2006 9:12 am
by nomankhn
Suleman.Khalil wrote:Hello,
i find hidden files by,
#>ls -ah ( comands show hidden files)

but how can i find all hidden starting from /.
&

from where i set user authentification "username and password" in Apache 2.0
Dear,

For password and user authentication point of view.

http://www.apacheweek.com/features/userauth
http://www.cs.cmu.edu/~help/web_publish ... pages.html

Regards
Noman Liaquat Khanzada Rajput
Linux means productivity and fun.
NT means 'Not Today'.'XP' what else but 'Xtremely Painful.'
If Linux doesn't have the solution, you have the wrong problem
Linux is like a Red Indian tent: no Windows, no Gates, and an Apache inside!

ThankYou

Posted: Tue Jul 11, 2006 9:41 am
by Suleman.Khalil
thanx buddy