Do anyone know how to configure document to point to home directory properly in apache?


 
Thread Tools Search this Thread
Top Forums Web Development Do anyone know how to configure document to point to home directory properly in apache?
# 1  
Old 05-01-2013
Do anyone know how to configure document to point to home directory properly in apache?

Hi

from Running web apps from your home folder

I've more or less follow the guide,

the reason why I'm expering 403 Forbidden is because the higher level directory will take precedance.

Code:
[phpmy@localhost ~]$ ls -lrthd /home/phpmy/www/joomla/ drwxrwxr-x 2 phpmy phpmy 4.0K May  1 20:26 /home/phpmy/www/joomla/ [phpmy@localhost ~]$ ls -lrthd /home/phpmy/ drwx------. 31 phpmy phpmy 4.0K May  1 21:39 /home/phpmy/


I've configured as follow

Code:
[root@localhost ~]# cat /etc/httpd/conf.d/joomla.conf  Alias /joomla /home/phpmy/www/joomla <Directory /home/phpmy/www/joomla>     Options Indexes FollowSymLinks     DirectoryIndex index.php </Directory> [root@localhost ~]#

Quote:



Lastly, the user that runs the Apache server has no access to your home folder, so to make life easy, simply use your user name instead by replacing the two references to "www-data" in the envvars file with your login user name. This is of course recommended only for development systems! 1 sudo mv /etc/apache2/envvars /etc/apache2/envvars.bak 2 sudo sh -c "sed -e 's/www-data/'`whoami`'/' /etc/apache2/envvars.bak > /etc/apache2/envvars"



do anyone know how to configure apache in centos 6.4 properly

httpd is run as follow

Code:
root      2449     1  0 21:39 ?        00:00:00 /usr/sbin/httpd
apache    2537  2449  0 21:39 ?        00:00:00 /usr/sbin/httpd
apache    2538  2449  0 21:39 ?        00:00:00 /usr/sbin/httpd
apache    2539  2449  0 21:39 ?        00:00:00 /usr/sbin/httpd
apache    2540  2449  0 21:39 ?        00:00:00 /usr/sbin/httpd
apache    2541  2449  0 21:39 ?        00:00:00 /usr/sbin/httpd
apache    2542  2449  0 21:39 ?        00:00:00 /usr/sbin/httpd
apache    2543  2449  0 21:39 ?        00:00:00 /usr/sbin/httpd
apache    2544  2449  0 21:39 ?        00:00:00 /usr/sbin/httpd

Apache/2.2.15

thanks a lot!
# 2  
Old 05-01-2013
What distribution are you running?
# 3  
Old 05-01-2013
Centos 6.4
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Configure samba with PAM point 2 different LDAP

Hi, I would like to configure samba with PEM (with LDAP). I've already found, on the server, configured the PAM Authentication(with LDAP) for ssh. I wanted to know if it was possible to configure PAM for to authenticate to another LDAP only for SAMBA. Is possibile duplicate the... (2 Replies)
Discussion started by: mark888
2 Replies

2. UNIX for Dummies Questions & Answers

Unable to configure Oracle sqlplus V12 properly. Need Help. Resources could'nt be found elsewhere .

I installed Oracle sqlplus on My Ubuntu 14.04 64bit version as per the instructions on: help.ubuntu page (Unable to post the URL as i'm new user here). I'm totally new to SQL and now i'm learning queries in my college. I installed 64bit version of sqplus and run it executing the command:... (14 Replies)
Discussion started by: arjunmayilvagan
14 Replies

3. Red Hat

Can you configure Dell KACE to point to a RH Satellite?

Wild shot in the dark as both are exactly ubiquitous technologies, but here it goes: Anybody have any experience using a Dell KACE to PXE boot to a Red Hat Satellite kickstart install? I've set up the kickstart by itself before but I'm not sure there's a way to configure the KACE so that it will... (0 Replies)
Discussion started by: thmnetwork
0 Replies

4. IP Networking

configure apache to work with ssl

Hi, I need help to configure the apache to work with ssl. I have managed to create self-signed certificate according to the instruction in the following link. So I have the crt file and the key file. however when I add: <Virtualhost *:443> SSLEngine on ... (1 Reply)
Discussion started by: programAngel
1 Replies

5. Web Development

Apache to Tomcat forwarding not working properly

Hi, I am facing some problem with Apache to Tomcat forwarding. I have Tomcat (6.0.18) behind Apache (2.2). I want to use ‘https' for receiving request from the client. This request, when forwarded by Apache to Tomcat, will use ‘http'. My application's name is ‘abc', which is deployed in... (1 Reply)
Discussion started by: Technext
1 Replies

6. Red Hat

Who can give me a document for configure nagios on RHEL 5

Who can give me a document for configure nagios on RHEL 5,thanks . (1 Reply)
Discussion started by: zhengsenlin
1 Replies

7. Solaris

Apache 2 configure not recognizing options

Hello all. I am trying to compile Apache 2 (again!) and the configure script keeps telling me it does not recognize the options. Everything I am including is in the --help list. For example: --enable-so. First I will put in the LD flags, then configure with the --enable-so option. ... (2 Replies)
Discussion started by: RobertSubnet
2 Replies

8. Linux

Configure apache prefork MPM

Hello, i want to know the basics to configure prefork.c module to high Apache performance and i think it's depends on the server hardware details (RAM and Processors) Thanks :) (0 Replies)
Discussion started by: LinuxCommandos
0 Replies

9. UNIX for Dummies Questions & Answers

Need help to configure routing on home network

I have a Windows laptop and a Sparc desktop. I'm trying to toy around with routing. If have always on broadband from BT. My router ipaddress is: 192.168.1.1 This router uses DHCP. My Laptop Ip is as follows: Ethernet adapter Local Area Connection: Connection-specific DNS Suffix . :... (2 Replies)
Discussion started by: Kongowea
2 Replies

10. UNIX for Dummies Questions & Answers

Set up apache to point at my homepage

I have just install apache 1.3.22 on my solaris 2.6 with virtualhost which is working fine but I want to configure my httpd.conf file so that when I type in my url on an internet browsers it goes straight to my home page. eg www.mydomain.com should display my home page at the monent when I type... (4 Replies)
Discussion started by: hassan2
4 Replies
Login or Register to Ask a Question