apache配置

 Ubuntu Linux下apache基於域名的虛擬主機配置的詳細步驟:

 
最近在學習linux,今天在linux下配置了下虛擬主機,下面是步驟: 
要配置的網站http://www.myhack58.com 
虛擬主機文件 myweb 
1、首先在 /etc/apache2/sites-available 目錄下新建一個空的虛擬主機文件myweb
 
cd /etc/apache2/sites-available   
touch myweb   
 
2、退出返回到apache2目錄,在sites-enabled下創建myweb的軟連接
 
cd /etc/apache2/sites-enabled   
ln -f -s ../sites-available/myweb myweb   
 
3、用vi打開myweb,進行配置如下:
 
<VirtualHost *:80>
    ServerName www.xylxq.com
    ServerAlias xylxq.com *.xylxq.com   
    ServerAdmin [email protected]
 
    DocumentRoot /var/www/php100/
<Directory />
        Options FollowSymLinks   
        AllowOverride None
</Directory>
<Directory /var/www/php100/>
              Options Indexes FollowSymLinks MultiViews   
               AllowOverride None   
             Order allow,deny   
            allow from all   
               # This directive allows us to have apache2's default start page   
             # in /apache2-default/, but still have / go to the right place   
             # Commented out for Ubuntu   
             #RedirectMatch ^/$ /apache2-default/   
</Directory>
 
    ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/   
<Directory "/usr/lib/cgi-bin">
             AllowOverride None   
             Options ExecCGI -MultiViews +SymLinksIfOwnerMatch   
             Order allow,deny   
            Allow from all   
</Directory>
 
    ErrorLog /var/log/apache2/a.log   
 
         # Possible values include: debug, info, notice, warn, error, crit,   
         # alert, emerg.   
         LogLevel warn   
 
         CustomLog /var/log/apache2/access.log combined   
         ServerSignature On   
 
         Alias /doc/ "/usr/share/doc/"   
<Directory "/usr/share/doc/">
             Options Indexes MultiViews FollowSymLinks   
             AllowOverride None   
             Order deny,allow   
             Deny from all   
             Allow from 127.0.0.0/255.0.0.0 ::1/128   
</Directory>
</VirtualHost>
 
 
4、執行a2ensite myweb 使虛擬主機生效,若要失效則爲 a2dissite myweb
 
a2ensite myweb
 
5、用restart重啓或reload重載apache
 
/etc/init.d/apache2 reload  
 
 
6、修改host文件,加入127.0.0.1  http://www.myhack58.com
 
vi /etc/hosts   
 
現在網站就指向到/var/www/myweb文件夾中,可以在其中添加項目了

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章