aboutsummaryrefslogtreecommitdiffstats
     JsonScgiQt
=====================
by Jason A. Donenfeld
   Jason@zx2c4.com


This is a simple library for interfacing Qt applications with SCGI interfaces,
such as that found in nginx. See the examples dir for details.

Nginx configuration includes adding a block like this:

	location /qtapp {
		scgi_pass 127.0.0.1:4000;
		scgi_param  REQUEST_URI        $request_uri;
		scgi_param  HTTPS              $https if_not_empty;
	}

It also works with Apache and Lighttpd using the standard SCGI modules.