blob: d70339f37a05dff9a945a0728ed4b17ac712445b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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.
|