File: test-http-set-status-lua.cfg

package info (click to toggle)
haproxy 3.2.10-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 23,924 kB
  • sloc: ansic: 267,927; sh: 3,466; xml: 1,756; python: 1,345; makefile: 1,155; perl: 168; cpp: 21
file content (31 lines) | stat: -rw-r--r-- 768 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
global
       maxconn 100
	   lua-load setstatus.lua

defaults
	mode http
	timeout client 10000
	timeout server 10000
	timeout connect 10000

# Expect HTTP/1.1 418 I'm a teapot
listen lua-service-set-status-defaultreason
    bind :8003
	http-request use-service lua.http418-default

# Expect HTTP/1.1 418 I'm a coffeepot
listen lua-service-set-status-customreason
    bind :8004
	http-request use-service lua.http418-coffeepot

# Expect HTTP/1.1 418 I'm a teapot
listen lua-action-set-status-defaultreason
    bind :8005
	http-response lua.set-status-418-defaultreason
	server host 127.0.0.1:8080

# Expect HTTP/1.1 418 I'm a coffeepot
listen lua-action-set-status-customreason
    bind :8006
	http-response lua.set-status-418-customreason
	server host 127.0.0.1:8080