關於ubuntu 下安裝的php和apache2 如何配置多虛擬主個機

ubuntu 下 安裝apache2 完成後apache

/etc/apache2/目錄下是看不到httpd.confubuntu

由於被apache2.conf代替了. 不重要 ,只是名字不同而已服務器

默認狀況下 訪問127.0.0.1 是讀取sites-available的conf配置的ide

爲了支持 多個虛擬主機的配置咱們須要作如下操做ui

1.在apache2目錄下 手動添加 extra 文件夾 ,並在extra 文件加下添加一個 httpd-vhost.conf文件spa

2.打開apache2.confrest

(1).修改code

<Directory />
    Options FollowSymLinks
    AllowOverride None
    #Require all denied //註釋掉
    allow from all    //添加這個選項
</Directory>

(2).添加 Include extra/httpd-vhost.conf域名

3.在httpd-vhost.conf中 添加虛擬主機 示例:it

<VirtualHost *:80>
ServerName   localhost.fis3
DocumentRoot  /home/spademan/mypro/fis/fis3/
ErrorLog    /logs/localhost.fis3-error.log
CustomLog   /logs/localhost.fis3-access.log  combined
</VirtualHost>

4.重啓服務器 sudo apache apache2ctl restart //或者 sudo apachectl restart

5.配置hosts,便可用虛擬域名訪問

相關文章
相關標籤/搜索