[newbie] Apache user directory

2002-03-14 Thread Daniel Chen
I tried to set up my Apache web server that all the user can have their own web pages under their home/user/public_html I put this line in httpd.conf UserDir public_html However, when I tried to access user's web page by typing http://www.mywebsite.name/~username/ The web server gave me a error

Re: [newbie] Apache user directory

2002-03-14 Thread Daniel Moríñigo Sotelo
Hi Daniel, First of all, sorry for my bad english. Try this: Add this lines in httpd.conf UserDir enabled user_name Alias /~username /~home/username/public_html Create the folder public_html and change permissions as root: chown -R username:apache ~username/public_html

Re: [newbie] Apache user directory

2002-03-14 Thread ed tharp
were you on a local lan or thru the internet? what are the permissions or the folder /home/username/public_html? is apache configured for virtual domains? On Thursday 14 March 2002 03:57, you wrote: I tried to set up my Apache web server that all the user can have their own web pages under