View | Details | Raw Unified | Return to bug 32716
Collapse All | Expand All

(-)a/etc/nginx.conf (-1 / +8 lines)
Lines 17-22 server { Link Here
17
    location / {
17
    location / {
18
        include proxy_params;
18
        include proxy_params;
19
        proxy_pass http://intranet;
19
        proxy_pass http://intranet;
20
21
	# provide room for the Link headers emitted
22
	# by REST API methods when doing pagination
23
	proxy_buffer_size 8k;
20
    }
24
    }
21
}
25
}
22
26
Lines 29-33 server { Link Here
29
    location / {
33
    location / {
30
        include proxy_params;
34
        include proxy_params;
31
        proxy_pass http://opac;
35
        proxy_pass http://opac;
36
37
	# provide room for the Link headers emitted
38
	# by REST API methods when doing pagination
39
	proxy_buffer_size 8k;
32
    }
40
    }
33
}
41
}
34
- 

Return to bug 32716