简介

mod_static支持静态文件访问。

配置

  • 模块配置文件

    conf/mod_static/mod_static.conf

    1. [basic]
    2. DataPath = ../conf/mod_static/static_rule.data
  • 规则配置文件

    conf/mod_static/static_rule.data

    | Action | 描述 || ————————————- | ————————————————— || BROWSE | 访问指定目录下的静态文件。 第一个参数为根目录位置,第二个参数为默认静态文件名。|

    1. {
    2. "Config": {
    3. "example_product": [
    4. {
    5. "Cond": "req_host_in(\"www.example.org\")",
    6. "Action": {
    7. "Cmd": "BROWSE",
    8. "Params": [
    9. "./",
    10. "index.html"
    11. ]
    12. }
    13. }
    14. ]
    15. },
    16. "Version": "20190101000000"
    17. }