apache

Apache 2.2 2.4 different

目錄

 

 


2.4 與 2.2 的分別

 

Access control

2.2 configuration:

Order deny,allow
Deny from all

2.4 configuration:

Require all denied

======================

2.2 configuration:

Order allow,deny
Allow from all

2.4 configuration:

Require all granted

======================

2. Apache - SSL

最後更新: 2016-10-08

介紹

 

 

mod-cband (apache 的速度管理)

更新時間: 2018-11-19

介紹

由於 apache 本身沒有速度限制功能,

那就要靠額外的 module 去補足此必要的功能

libapache2-mod-cband 就是其中選擇之一

而且它可以做到

  • per-user bandwidth limiting
  • per-virtualhost bandwidth limiting
  • per-destination bandwidth limiting
     

apache 上的檔案系統 webdav

12/7/11

 

Webdav:

 

webdav 全名是 Web-based Distributed Authoring and Versioning.
它是 HTTP 協定的其中一種擴充來.
我們可以用它來實現在 Web Server 裡上載, 下載及直接修改檔案.

這功能相當實用, 有了它後, 修改檔案就不再需要經 FTP 了.

 

在 Apache2.2 上想啟用此功能, 必先要啟用有關模組

啟用模組:

a2enmod dav
a2enmod dav_fs

# a2enmod 是用來啟用 module 的指令
# dav_fs 是依賴 dav 去提供 webdav 的功能

修改主機設定:

在某個想啟用 Webdav 的 VirtualHost 的 configure file 加入以下內容

RSS feed