github.com/abolfazlbeh/zhycan@v0.0.0-20230819144214-24cf38237387/configs/http_sample.json (about)

     1  {
     2    "default": "s1",
     3    "servers": [
     4      {
     5        "name":                   "s1",
     6        "addr":                   ":3000",
     7        "versions":               ["v1", "v2"],
     8        "support_static":         true,
     9        "conf": {
    10          "server_header": "",
    11          "strict_routing": false,
    12          "case_sensitive": false,
    13          "unescape_path": false,
    14          "etag": false,
    15          "body_limit": 4194304,
    16          "concurrency": 262144,
    17          "read_timeout": -1,
    18          "write_timeout": -1,
    19          "idle_timeout": -1,
    20          "read_buffer_size": 4096,
    21          "write_buffer_size": 4096,
    22          "compressed_file_suffix": ".gz",
    23          "get_only": false,
    24          "disable_keepalive": false,
    25          "network": "tcp",
    26          "enable_print_routes": true,
    27          "attach_error_handler": true,
    28          "request_methods": ["ALL"]
    29        },
    30        "middlewares": {
    31          "order": ["logger", "favicon"],
    32          "logger": {
    33            "format": "[${time}] ${status} - ${latency} ${method} ${path}\n",
    34            "time_format": "15:04:05",
    35            "time_zone": "Local",
    36            "time_interval": 500,
    37            "output": "stdout"
    38          },
    39          "favicon": {
    40              "file": "./favicon.ico",
    41              "url": "/favicon.ico",
    42              "cache_control": "public, max-age=31536000"
    43          }
    44        },
    45        "static": {
    46          "prefix": "/",
    47          "root": "./public",
    48          "config": {
    49            "compress": false,
    50            "byte_range": false,
    51            "browse": false,
    52            "download": false,
    53            "index": "index.html",
    54            "cache_duration": 10,
    55            "max_age": 0
    56          }
    57        }
    58      }
    59    ]
    60  }