2019年10月13日 星期日

設定 http 鏡像站

請修改 pxeserver 之 apache 設定,以便提供鏡像站服務

1. 以 root 權限切換至 /etc/apache2/sites-enabled 目錄

# cd /etc/apache2/sites-enabled

2. 編輯 apache 之設定檔:

2.1
/etc/apache2/sites-enabled# vi 000-default.conf

將其中的

DocumentRoot /var/www/html

改為

DocumentRoot /home/ftp

2.2 修改 /etc/apache2/apache2.conf

請找到底下片段:

<Directory /var/www/>
        Options Indexes FollowSymLinks
        AllowOverride None
        Require all granted
</Directory>

再新增底下片段(基本上用複製/貼上/修改即可):

<Directory /home/ftp/>
        Options Indexes FollowSymLinks
        AllowOverride None
        Require all granted
</Directory>



3. 重新啟動 apache 服務

# /etc/init.d/apache2 restart

4. 以瀏覽器驗收一下 http://192.168.10.254 是否有 debian 目錄。