轉:Ubuntu上apache多連接埠配置虛擬機器主機的方法

來源:互聯網
上載者:User
來自:http://www.blogjava.net/zhyiwww/archive/2010/05/24/321742.html

linux環境apache多連接埠配置虛擬機器主機的方法

Linux(Ubuntu)
預設情況下,linux上apache使用的
預設文件目錄是:/var/www
預設連接埠是:80

如果想發布自己的一個系統資來源目錄,可以使用下面的方法,執行如下命令:

(1)添加監聽連接埠
#cd /etc/apache2
#vim ports.conf
檔案添加:
NameVirtualHost *:8000
Listen 8000

(2)配置虛擬目錄
#cd /etc/apache2/sites-available
#cp default default-me
#vim default-me
檔案內容如下:

<VirtualHost *:8000>
    ServerAdmin webmaster@localhost

    DocumentRoot /wwwroot
    <Directory />
        Options FollowSymLinks
        AllowOverride None
    </Directory>
    <Directory /wwwroot/>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride None
        Order allow,deny
        allow from all
    </Directory>

    ErrorLog /var/log/apache2/error.log

    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn

    CustomLog /var/log/apache2/access.log combined

</VirtualHost>
粗體部分是關鍵點。

(3)發布網站

# ln -s /etc/apache2/sites-available/default-me /etc/apache2/sites-enabled/001-default

(4)重啟服務

#/etc/init.d/apache2 restart

(5)測試
http://localhost:8000/
如果能夠正常訪問就說明配置正確了。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.