This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PDF_save($this->pdf); | |
PDF_setcolor($this->pdf, "both", "rgb", 0.0, 0.0, 0.0, 0.0); | |
$sh = PDF_shading( | |
this->pdf, | |
"radial", $this->pdf->PAGE_WIDTH/2, $this->pdf->PAGE_HEIGHT/2, | |
$this->pdf->PAGE_WIDTH/2, $this->pdf->PAGE_HEIGHT/2, | |
1.0, 0.5, 0.5, 0.0, | |
"r0 0 r1 500" | |
); | |
PDF_rect(this->pdf, 0, 0, $this->pdf->PAGE_WIDTH, $this->pdf->PAGE_HEIGHT); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
global | |
maxconn 10000 # Total Max Connections. This is dependent on ulimit | |
nbproc 2 | |
defaults | |
mode http | |
option redispatch | |
maxconn 2000 | |
contimeout 5000 | |
clitimeout 50000 |