安裝
sudo apt-get install apache2
設定檔
/etc/apache2/apache2.conf
預設網頁目錄
/var/www
直接連線 : http:/localhost , 即可看到網頁
重啟Apache
sudo /etc/init.d/apache2 start|stop|restart
防火牆
記得打開 80 port
修改網頁根目錄
/etc/apache2/apache2.conf 更改
<Directory /data/web/>
#Indexes是檔案列表, 當沒有首列時, 可列出所有檔案, 相當危險, 最好去除掉
#Options Indexes FollowSymLinks
Options FollowSymLinks
AllowOverride None
Require all granted
</Directory>
/etc/apache2/sites-available/000-default.conf 更改
DocumentRoot /data/web
首頁設定
修改 /etc/apache2/mods-enabled/dir.conf
<IfModule mod_dir.c> DirectoryIndex index.php index.html index.cgi index.pl index.xhtml index.htm </IfModule>