The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Google UNIX.COM


UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !!

Closed Thread
 
Submit Tools LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 01-16-2004
Synbios's Avatar
Registered User
 

Join Date: Jun 2003
Location: Boston, MA
Posts: 38
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit! Stumble this Post!Spurl this Post!
userdir

In the apache documentation, they say to enable UserDir for all users except a specific list, write this:

UserDir Enabled
UserDir Disabled user1 user2 user3

But configtest gives me:

"Syntax error on line 533 of httpd.conf:
UserDir "enable" keyword requires a list of usernames."

When I set it up to disable for all users and enable for a specific list, it works fine:

UserDir Enabled user1 user2 user3
UserDir Disabled

Apache also says this will only work for 1.3 and above, but I'm running 1.3. What is going on?
Forum Sponsor
  #2 (permalink)  
Old 01-16-2004
kduffin's Avatar
UN1X
 

Join Date: Nov 2003
Location: Virginia
Posts: 441
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit! Stumble this Post!Spurl this Post!
Example:

#
# UserDir: The name of the directory which is appended onto a user's home
# directory if a ~user request is received.
#
<IfModule mod_userdir.c>
UserDir public_html
</IfModule>

Or on a per virtual machine basis:

<VirtualHost *>
ServerAdmin root@somehost.com
DocumentRoot /usr/local/apache-ssl/htdocs
ServerName host.domain.org
UserDir users
ErrorLog /var/log/apache-error.log
CustomLog /var/log/apache-access.log combined
</VirtualHost>

If UserDir is not defined, ~ will not be translated to some directory name, but remain top-level.

Cheers,

Keith
Google UNIX.COM
Closed Thread

Thread Tools
Display Modes




All times are GMT -7. The time now is 04:24 AM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
The UNIX and Linux Forums Content Copyright ©1993-2008 The CEP Blog All Rights Reserved -Ad Management by RedTyger Visit The Global Fact Book

Content Relevant URLs by vBSEO 3.2.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101