dacota 發表於 2009-1-31 23:32:09

Ubuntu 8.04 LTS 伺服器安裝-apache的設定

apache的設定,設定使用者網頁路徑
vi /etc/apache2/mods-available/userdir.conf
代碼:
<IfModule mod_userdir.c>
      UserDir public_html
      UserDir disabled root

      <Directory /home/*/public_html>
                AllowOverride FileInfo AuthConfig Limit
                Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
      </Directory>
</IfModule>


可以將上述兩個 public_html 修改成 www 較為簡短
將 Indexes 刪除,避免目錄中沒有 index.htm (首頁) 而被瀏覽者看到目錄中所有的檔案或資料夾

如果有修改,執行
a2enmod userdir #啟動 userdir 模組

/etc/init.d/apache2 restart #重新啟動 apache
代碼:

apache2: apr_sockaddr_info_get() failed for mail
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
如果重新啟動apache,出現上述的訊息,可以不用理會,或修改 apache2.conf

vi /etc/apache2/apache2.conf #修改 apache2.conf ,增加以下一行指令
ServerName localhost

重新啟動 apache,就不會有上述的訊息。
https://wiki.ubuntu.org.cn/index.php?title=UbuntuHelp:ApacheMySQLPHP/zh&variant=zh-tw

#Alias的設定檔如下
vi /etc/apache2/apache2.conf


避免 /var/www/ 的目錄中沒有 index.htm (首頁) 而被瀏覽者看到目錄中所有的檔案或資料夾
vi /etc/apache2/sites-enabled/000-default

<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews #將 Indexes 刪除
AllowOverride None
Order allow,deny
allow from all
</Directory>

/etc/init.d/apache2 restart #重新啟動 apache
頁: [1]
查看完整版本: Ubuntu 8.04 LTS 伺服器安裝-apache的設定