aboutsummaryrefslogtreecommitdiffstats
path: root/configs/nginx.conf
blob: d184b89c411c9a45c2034c062885d0ca13893b3d (plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
#user  xxx;
#worker_processes 1;
#worker_processes 2;
#worker_processes 4;
#worker_processes 8;

master_process on;
daemon off;

worker_rlimit_nofile 10240;
events {
    use epoll;
    #epoll_events        512;
    worker_connections  10240;
    accept_mutex       off;
    multi_accept       off;
}


http {
    access_log    off;
    include       mime.types;
    default_type  application/octet-stream;
    sendfile        on;


    ##RPS test
    keepalive_timeout 300s;
    keepalive_requests 1000000;

    server {
        listen 443;
        #ssl_protocols TLSv1.2;
        #ssl_prefer_server_ciphers on;
        root   html;
        index  index.html index.htm;
        location /return {
                return 204;
           }
        location /64B.json {
                return 200 '{"status":"success","result":"this is \
                           a 64Byte json file test!"}';
          }
        location /1KB.json{
               return 201 '{"status":"success","result":"\
                           Nanchang, which was the capital of Yuzhang \
                           Prefecture during the HanDynasty, \
                           now falls under the jurisdiction of Hongzhou. \
                           It straddles the borderof the \
                           influence of the Ye and Zhen constellations , \
                           and is adjacent to theHeng \
                           and the Lu mountains . The three rivers enfold \
                           it like the frontpart \
                           of a garment and the five lakes encircle it \
                           like a girdle. Itcontrols \
                           the savage Jing area and connects Ou and Yue, \
                           and itsproducts are \
                           nature’s jewels. The radiance of its legendary \
                           sword shootsdirectly upward \
                           between the constellations Niu and Dou. \
                           Its talented peopleare outstanding,\
                           and the spirit of intelligence pervades the \
                           place. This wasthe place where Xu \
                           Ru spent the night on his visit to Chen Fan (10). \
                           The mightyHongzhou spreads \
                           out immensely amid the fog, and the intellectual \
                           luminariesare as numerous as\
                           meteors chasing one another. \
                           "}';
          }
        location /2KB.json{
               return 202 '{"status":"success","result":"\
                           Hello from  NGINX, 2KB test\
                           Nanchang, which was the capital of Yuzhang \
                           Prefecture during the HanDynasty, \
                           now falls under the jurisdiction of Hongzhou. \
                           It straddles the borderof the \
                           influence of the Ye and Zhen constellations , \
                           and is adjacent to theHeng \
                           and the Lu mountains . The three rivers enfold \
                           it like the frontpart \
                           of a garment and the five lakes encircle it \
                           like a girdle. Itcontrols \
                           the savage Jing area and connects Ou and Yue, \
                           and itsproducts are \
                           nature’s jewels. The radiance of its legendary \
                           sword shootsdirectly upward \
                           between the constellations Niu and Dou. \
                           Its talented peopleare outstanding,\
                           and the spirit of intelligence pervades \
                           the place. This wasthe place where Xu \
                           Ru spent the night on his visit to \
                           Chen Fan (10). The mightyHongzhou spreads \
                           out immensely amid the fog, and the intellectual \
                           luminariesare as numerous as\
                           meteors chasing one another.\
                           of a garment and the five lakes encircle \
                           it like a girdle. Itcontrols \
                           the savage Jing area and connects \
                           Ou and Yue, and itsproducts are \
                           nature’s jewels. The radiance of its \
                           legendary sword shootsdirectly upward \
                           between the constellations Niu and Dou. \
                           Its talented peopleare outstanding,\
                           and the spirit of intelligence pervades \
                           the place. This wasthe place where Xu \
                           Ru spent the night on his visit to \
                           Chen Fan (10). The mightyHongzhou spreads \
                           out immensely amid the fog, and the \
                           intellectual luminariesare as numerous as\
                           meteors chasing one another. \
                           "}';
          }

        }
    }