Jump to content

[SOLVED] incredibly lost


Jago6060

Recommended Posts

I'm very new to linux.  I have a project that I'm working on and I'm not entirely sure where to start.  Here is my task.

 

"Using Apache, install a secure (encrypted) using ** Apache's (passworded) WWW server that will only allow Tom and Harry with a password of test to access documents on the server. (Any OS). I suggest open SSL....

 

** PHP or other password scripts are NOT acceptable."

 

I'm doing this on Slackware 11.  I also have Slax Server if anyone thinks it would be easier to do this task on there.  Any help would be greatly appreciated!

Link to comment
Share on other sites

Yes,  I'm actually starting on linux, slackware is the only distro I've used thus far.  I can do basic things like OS setup, partitioning, and I've done packet forwarding in the past but thats about it. I had looked on www.apache.org but I wasn't entirely sure what I needed to be looking for.

Link to comment
Share on other sites

I think "slapt" is the package manager for slackware.

 

Is apache on the server?

If not -> slapt-get install apache2

To get apache with ssl, you'll have to do something like:

slapt-get install libssl

 

Is htpasswd installed/working? Apache may need to be installed for this tool to be available.

 

-steve

Link to comment
Share on other sites

thank you so much for that tutorial, it's the best one I've seen.  My next question is how do I go about testing and making sure this works?

 

I put my .htaccess file in my /var/www folder to protect those files and it's sub-directories, and I have my .htpasswd file in /usr/local.

Link to comment
Share on other sites

I don't get any popup when I browse with any of the computer's users.  I don't know if it makes a difference but I restarted httpd just in case that was hindering anything.  .htaccess and .htpasswd do not need to be in any specific directory right?  .htaccess just needs to be in the file it's going to protect?

 

here is the contents of my .htaccess file

 

AuthUserFile /usr/local/passwords/.htpasswd
AuthType Basic
AuthName Protected
Require valid-user

 

I have 2 users, Tom and Harry, who are supposed to be the only ones with access to the files is the /var/www folder

Link to comment
Share on other sites

That goes in the main configuration file (unless it can actually affect .htaccess files in subdirectories--I'm not sure). All is the default, so if you don't have a line limiting the overrides, you don't need it. Double check all your Directory directives to see if they have an AllowOverride line.

Link to comment
Share on other sites

I have a section in my httpd.conf file that looks like this...

 

<Directory>
     Options FollowSymLinks
     AllowOverride None
</Directory>

 

and there is also just a single line within a <Directory> block that says

 

AllowOverride None

 

do I change both?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.