我有一个带Django和MySQL的系统CentOS。
/home/user1/
-/vhost/*.conf
-/webapps/
abc.com
xyz.com
/home/user2/
-/vhost/*.conf
-/webapps/
123.com
789.com
感谢您的帮助!
更新1: 在httpd.conf中:
User user1
Group apache
httpd无法访问/ home / user2 / webapps。
答案 0 :(得分:1)
您需要阅读Apache Vhost Configuration。
告诉我们您的尝试,工作内容,不起作用或您不理解的内容。
如果您的系统拥有所有网站的1个IP地址,那么您将需要以下内容:
#This is your 'default' host,
#people accessing the site via IP-address will see this site.
<VirtualHost *:80>
ServerName abc.com
ServerAlias xyz.com
DocumentRoot /home/user1/webapps/
</VirtualHost>
#This is the 123 and 789 vhost
<VirtualHost *:80>
ServerName 123.com
ServerAlias 789.com
DocumentRoot /home/user2/webapps/
</VirtualHost>
的说明添加所有指令