-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuwsgi.log
1252 lines (1250 loc) · 131 KB
/
uwsgi.log
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
*** Starting uWSGI 2.0.20 (32bit) on [Mon Dec 20 13:29:14 2021] ***
compiled with version: 8.3.0 on 06 October 2021 05:59:48
os: Linux-5.10.63-v7l+ #1459 SMP Wed Oct 6 16:41:57 BST 2021
nodename: raspberrypi
machine: armv7l
clock source: unix
pcre jit disabled
detected number of CPU cores: 4
current working directory: /home/pi/SAIFE
detected binary path: /home/pi/.local/bin/uwsgi
*** WARNING: you are running uWSGI without its master process manager ***
your processes number limit is 27721
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address /tmp/uwsgi.sock fd 3
Python version: 3.7.3 (default, Jan 22 2021, 20:04:44) [GCC 8.3.0]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x1aaa78
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 64408 bytes (62 KB) for 1 cores
*** Operational MODE: single process ***
unable to load app 0 (mountpoint='') (callable not found or import error)
*** no app loaded. going in full dynamic mode ***
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI worker 1 (and the only) (pid: 29981, cores: 1)
--- no python application found, check your startup logs for errors ---
[pid: 29981|app: -1|req: -1/1] 127.0.0.1 () {52 vars in 939 bytes} [Mon Dec 20 14:00:04 2021] GET / => generated 21 bytes in 0 msecs (HTTP/1.1 500) 2 headers in 83 bytes (0 switches on core 0)
--- no python application found, check your startup logs for errors ---
[pid: 29981|app: -1|req: -1/2] 127.0.0.1 () {50 vars in 871 bytes} [Mon Dec 20 14:00:04 2021] GET /favicon.ico => generated 21 bytes in 0 msecs (HTTP/1.1 500) 2 headers in 83 bytes (0 switches on core 0)
--- no python application found, check your startup logs for errors ---
[pid: 29981|app: -1|req: -1/3] 127.0.0.1 () {52 vars in 939 bytes} [Mon Dec 20 14:01:04 2021] GET / => generated 21 bytes in 0 msecs (HTTP/1.1 500) 2 headers in 83 bytes (0 switches on core 0)
--- no python application found, check your startup logs for errors ---
[pid: 29981|app: -1|req: -1/4] 127.0.0.1 () {50 vars in 871 bytes} [Mon Dec 20 14:01:04 2021] GET /favicon.ico => generated 21 bytes in 0 msecs (HTTP/1.1 500) 2 headers in 83 bytes (0 switches on core 0)
--- no python application found, check your startup logs for errors ---
[pid: 29981|app: -1|req: -1/5] 127.0.0.1 () {52 vars in 939 bytes} [Mon Dec 20 14:04:58 2021] GET / => generated 21 bytes in 0 msecs (HTTP/1.1 500) 2 headers in 83 bytes (0 switches on core 0)
--- no python application found, check your startup logs for errors ---
[pid: 29981|app: -1|req: -1/6] 127.0.0.1 () {50 vars in 871 bytes} [Mon Dec 20 14:04:59 2021] GET /favicon.ico => generated 21 bytes in 0 msecs (HTTP/1.1 500) 2 headers in 83 bytes (0 switches on core 0)
--- no python application found, check your startup logs for errors ---
[pid: 29981|app: -1|req: -1/7] 127.0.0.1 () {54 vars in 970 bytes} [Mon Dec 20 14:25:19 2021] GET / => generated 21 bytes in 0 msecs (HTTP/1.1 500) 2 headers in 83 bytes (0 switches on core 0)
--- no python application found, check your startup logs for errors ---
[pid: 29981|app: -1|req: -1/8] 127.0.0.1 () {54 vars in 924 bytes} [Mon Dec 20 14:25:20 2021] GET /favicon.ico => generated 21 bytes in 0 msecs (HTTP/1.1 500) 2 headers in 83 bytes (0 switches on core 0)
--- no python application found, check your startup logs for errors ---
[pid: 29981|app: -1|req: -1/9] 127.0.0.1 () {52 vars in 939 bytes} [Mon Dec 20 14:26:38 2021] GET / => generated 21 bytes in 0 msecs (HTTP/1.1 500) 2 headers in 83 bytes (0 switches on core 0)
--- no python application found, check your startup logs for errors ---
[pid: 29981|app: -1|req: -1/10] 127.0.0.1 () {50 vars in 871 bytes} [Mon Dec 20 14:26:39 2021] GET /favicon.ico => generated 21 bytes in 0 msecs (HTTP/1.1 500) 2 headers in 83 bytes (0 switches on core 0)
*** Starting uWSGI 2.0.20 (32bit) on [Mon Dec 20 14:27:06 2021] ***
compiled with version: 8.3.0 on 06 October 2021 05:59:48
os: Linux-5.10.63-v7l+ #1459 SMP Wed Oct 6 16:41:57 BST 2021
nodename: raspberrypi
machine: armv7l
clock source: unix
pcre jit disabled
detected number of CPU cores: 4
current working directory: /home/pi/SAIFE
detected binary path: /home/pi/.local/bin/uwsgi
chdir() to /home/pi/SAIFE
*** WARNING: you are running uWSGI without its master process manager ***
your processes number limit is 27721
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address /tmp/uwsgi.sock fd 3
Python version: 3.7.3 (default, Jan 22 2021, 20:04:44) [GCC 8.3.0]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0xae8bb0
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 64408 bytes (62 KB) for 1 cores
*** Operational MODE: single process ***
WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0xae8bb0 pid: 31212 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI worker 1 (and the only) (pid: 31212, cores: 1)
*** Starting uWSGI 2.0.20 (32bit) on [Mon Dec 20 14:27:28 2021] ***
compiled with version: 8.3.0 on 06 October 2021 05:59:48
os: Linux-5.10.63-v7l+ #1459 SMP Wed Oct 6 16:41:57 BST 2021
nodename: raspberrypi
machine: armv7l
clock source: unix
pcre jit disabled
detected number of CPU cores: 4
current working directory: /home/pi/SAIFE
detected binary path: /home/pi/.local/bin/uwsgi
chdir() to /home/pi/SAIFE
*** WARNING: you are running uWSGI without its master process manager ***
your processes number limit is 27721
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address /tmp/uwsgi.sock fd 3
Python version: 3.7.3 (default, Jan 22 2021, 20:04:44) [GCC 8.3.0]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x1115bb0
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 64408 bytes (62 KB) for 1 cores
*** Operational MODE: single process ***
unable to load app 0 (mountpoint='') (callable not found or import error)
*** no app loaded. going in full dynamic mode ***
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI worker 1 (and the only) (pid: 31226, cores: 1)
*** Starting uWSGI 2.0.20 (32bit) on [Mon Dec 20 14:27:40 2021] ***
compiled with version: 8.3.0 on 06 October 2021 05:59:48
os: Linux-5.10.63-v7l+ #1459 SMP Wed Oct 6 16:41:57 BST 2021
nodename: raspberrypi
machine: armv7l
clock source: unix
pcre jit disabled
detected number of CPU cores: 4
current working directory: /home/pi/SAIFE
detected binary path: /home/pi/.local/bin/uwsgi
*** WARNING: you are running uWSGI without its master process manager ***
your processes number limit is 27721
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address /tmp/uwsgi.sock fd 3
Python version: 3.7.3 (default, Jan 22 2021, 20:04:44) [GCC 8.3.0]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x14f5bd8
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 64408 bytes (62 KB) for 1 cores
*** Operational MODE: single process ***
unable to load app 0 (mountpoint='') (callable not found or import error)
*** no app loaded. going in full dynamic mode ***
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI worker 1 (and the only) (pid: 31243, cores: 1)
--- no python application found, check your startup logs for errors ---
[pid: 31243|app: -1|req: -1/1] 127.0.0.1 () {52 vars in 939 bytes} [Mon Dec 20 14:32:28 2021] GET / => generated 21 bytes in 0 msecs (HTTP/1.1 500) 2 headers in 83 bytes (0 switches on core 0)
--- no python application found, check your startup logs for errors ---
[pid: 31243|app: -1|req: -1/2] 127.0.0.1 () {50 vars in 871 bytes} [Mon Dec 20 14:32:28 2021] GET /favicon.ico => generated 21 bytes in 0 msecs (HTTP/1.1 500) 2 headers in 83 bytes (0 switches on core 0)
*** Starting uWSGI 2.0.20 (32bit) on [Mon Dec 20 14:33:24 2021] ***
compiled with version: 8.3.0 on 06 October 2021 05:59:48
os: Linux-5.10.63-v7l+ #1459 SMP Wed Oct 6 16:41:57 BST 2021
nodename: raspberrypi
machine: armv7l
clock source: unix
pcre jit disabled
detected number of CPU cores: 4
current working directory: /home/pi/SAIFE
detected binary path: /home/pi/.local/bin/uwsgi
*** WARNING: you are running uWSGI without its master process manager ***
your processes number limit is 27721
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address /tmp/uwsgi.sock fd 3
Python version: 3.7.3 (default, Jan 22 2021, 20:04:44) [GCC 8.3.0]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x2cfbe8
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 64408 bytes (62 KB) for 1 cores
*** Operational MODE: single process ***
WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x2cfbe8 pid: 32111 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI worker 1 (and the only) (pid: 32111, cores: 1)
*** Starting uWSGI 2.0.20 (32bit) on [Mon Dec 20 14:33:44 2021] ***
compiled with version: 8.3.0 on 06 October 2021 05:59:48
os: Linux-5.10.63-v7l+ #1459 SMP Wed Oct 6 16:41:57 BST 2021
nodename: raspberrypi
machine: armv7l
clock source: unix
pcre jit disabled
detected number of CPU cores: 4
current working directory: /home/pi/SAIFE
detected binary path: /home/pi/.local/bin/uwsgi
*** WARNING: you are running uWSGI without its master process manager ***
your processes number limit is 27721
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address /tmp/uwsgi.sock fd 3
Python version: 3.7.3 (default, Jan 22 2021, 20:04:44) [GCC 8.3.0]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0xb57bd8
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 64408 bytes (62 KB) for 1 cores
*** Operational MODE: single process ***
unable to load app 0 (mountpoint='') (callable not found or import error)
*** no app loaded. going in full dynamic mode ***
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI worker 1 (and the only) (pid: 32139, cores: 1)
*** Starting uWSGI 2.0.20 (32bit) on [Mon Dec 20 14:34:52 2021] ***
compiled with version: 8.3.0 on 06 October 2021 05:59:48
os: Linux-5.10.63-v7l+ #1459 SMP Wed Oct 6 16:41:57 BST 2021
nodename: raspberrypi
machine: armv7l
clock source: unix
pcre jit disabled
detected number of CPU cores: 4
current working directory: /home/pi/SAIFE
detected binary path: /home/pi/.local/bin/uwsgi
*** WARNING: you are running uWSGI without its master process manager ***
your processes number limit is 27721
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address /tmp/uwsgi.sock fd 3
Python version: 3.7.3 (default, Jan 22 2021, 20:04:44) [GCC 8.3.0]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x1944bd8
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 64408 bytes (62 KB) for 1 cores
*** Operational MODE: single process ***
unable to load app 0 (mountpoint='') (callable not found or import error)
*** no app loaded. going in full dynamic mode ***
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI worker 1 (and the only) (pid: 32174, cores: 1)
*** Starting uWSGI 2.0.20 (32bit) on [Mon Dec 20 14:36:16 2021] ***
compiled with version: 8.3.0 on 06 October 2021 05:59:48
os: Linux-5.10.63-v7l+ #1459 SMP Wed Oct 6 16:41:57 BST 2021
nodename: raspberrypi
machine: armv7l
clock source: unix
pcre jit disabled
detected number of CPU cores: 4
current working directory: /home/pi/SAIFE
detected binary path: /home/pi/.local/bin/uwsgi
chdir() to /home/pi/SAIFE
your processes number limit is 27721
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address /tmp/uwsgi.sock fd 3
Python version: 3.7.3 (default, Jan 22 2021, 20:04:44) [GCC 8.3.0]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0xd38d08
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 322040 bytes (314 KB) for 4 cores
*** Operational MODE: preforking ***
ModuleNotFoundError: No module named 'SAIFE'
unable to load app 0 (mountpoint='') (callable not found or import error)
*** no app loaded. going in full dynamic mode ***
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 32216)
spawned uWSGI worker 1 (pid: 32218, cores: 1)
spawned uWSGI worker 2 (pid: 32219, cores: 1)
spawned uWSGI worker 3 (pid: 32220, cores: 1)
spawned uWSGI worker 4 (pid: 32221, cores: 1)
*** Starting uWSGI 2.0.20 (32bit) on [Mon Dec 20 14:45:11 2021] ***
compiled with version: 8.3.0 on 06 October 2021 05:59:48
os: Linux-5.10.63-v7l+ #1459 SMP Wed Oct 6 16:41:57 BST 2021
nodename: raspberrypi
machine: armv7l
clock source: unix
pcre jit disabled
detected number of CPU cores: 4
current working directory: /home/pi/SAIFE
detected binary path: /home/pi/.local/bin/uwsgi
*** WARNING: you are running uWSGI without its master process manager ***
your processes number limit is 27721
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address /tmp/uwsgi.sock fd 3
Python version: 3.7.3 (default, Jan 22 2021, 20:04:44) [GCC 8.3.0]
!!! Python Home is not a directory: /home/pi/saife-venv !!!
Set PythonHome to /home/pi/saife-venv
Fatal Python error: initfsencoding: Unable to get the locale encoding
ModuleNotFoundError: No module named 'encodings'
Current thread 0xb6fcc040 (most recent call first):
*** Starting uWSGI 2.0.20 (32bit) on [Mon Dec 20 14:46:14 2021] ***
compiled with version: 8.3.0 on 06 October 2021 05:59:48
os: Linux-5.10.63-v7l+ #1459 SMP Wed Oct 6 16:41:57 BST 2021
nodename: raspberrypi
machine: armv7l
clock source: unix
pcre jit disabled
detected number of CPU cores: 4
current working directory: /home/pi/SAIFE
detected binary path: /home/pi/.local/bin/uwsgi
*** WARNING: you are running uWSGI without its master process manager ***
your processes number limit is 27721
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address /tmp/uwsgi.sock fd 3
Python version: 3.7.3 (default, Jan 22 2021, 20:04:44) [GCC 8.3.0]
!!! Python Home is not a directory: /home/pi/saife-venv !!!
Set PythonHome to /home/pi/saife-venv
Fatal Python error: initfsencoding: Unable to get the locale encoding
ModuleNotFoundError: No module named 'encodings'
Current thread 0xb6f74040 (most recent call first):
*** Starting uWSGI 2.0.20 (32bit) on [Mon Dec 20 14:49:23 2021] ***
compiled with version: 8.3.0 on 06 October 2021 05:59:48
os: Linux-5.10.63-v7l+ #1459 SMP Wed Oct 6 16:41:57 BST 2021
nodename: raspberrypi
machine: armv7l
clock source: unix
pcre jit disabled
detected number of CPU cores: 4
current working directory: /home/pi/SAIFE
detected binary path: /home/pi/.local/bin/uwsgi
*** WARNING: you are running uWSGI without its master process manager ***
your processes number limit is 27721
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address /tmp/uwsgi.sock fd 3
Python version: 3.7.3 (default, Jan 22 2021, 20:04:44) [GCC 8.3.0]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x56ccc0
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 64408 bytes (62 KB) for 1 cores
*** Operational MODE: single process ***
WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x56ccc0 pid: 32670 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI worker 1 (and the only) (pid: 32670, cores: 1)
*** Starting uWSGI 2.0.20 (32bit) on [Mon Dec 20 14:50:17 2021] ***
compiled with version: 8.3.0 on 06 October 2021 05:59:48
os: Linux-5.10.63-v7l+ #1459 SMP Wed Oct 6 16:41:57 BST 2021
nodename: raspberrypi
machine: armv7l
clock source: unix
pcre jit disabled
detected number of CPU cores: 4
current working directory: /home/pi/SAIFE
detected binary path: /home/pi/.local/bin/uwsgi
*** WARNING: you are running uWSGI without its master process manager ***
your processes number limit is 27721
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address /tmp/uwsgi.sock fd 3
Python version: 3.7.3 (default, Jan 22 2021, 20:04:44) [GCC 8.3.0]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0xb91a88
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 64408 bytes (62 KB) for 1 cores
*** Operational MODE: single process ***
WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0xb91a88 pid: 32686 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI worker 1 (and the only) (pid: 32686, cores: 1)
[pid: 32686|app: 0|req: 1/1] ::1 () {52 vars in 917 bytes} [Mon Dec 20 14:56:17 2021] GET / => generated 26477 bytes in 87 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 32686|app: 0|req: 2/2] ::1 () {50 vars in 855 bytes} [Mon Dec 20 14:56:17 2021] GET /static/lib/flaticon/font/flaticon.css => generated 1296 bytes in 5 msecs via sendfile() (HTTP/1.1 200) 7 headers in 285 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 3/3] ::1 () {50 vars in 849 bytes} [Mon Dec 20 14:56:17 2021] GET /static/lib/animate/animate.min.css => generated 16953 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 287 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 4/4] ::1 () {50 vars in 881 bytes} [Mon Dec 20 14:56:17 2021] GET /static/lib/owlcarousel/assets/owl.carousel.min.css => generated 2936 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 283 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 5/5] ::1 () {50 vars in 861 bytes} [Mon Dec 20 14:56:17 2021] GET /static/lib/lightbox/css/lightbox.min.css => generated 2608 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 284 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 6/6] ::1 () {50 vars in 833 bytes} [Mon Dec 20 14:56:17 2021] GET /static/lib/slick/slick.css => generated 1776 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 284 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 7/7] ::1 () {50 vars in 845 bytes} [Mon Dec 20 14:56:17 2021] GET /static/lib/slick/slick-theme.css => generated 3133 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 285 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 8/8] ::1 () {50 vars in 821 bytes} [Mon Dec 20 14:56:18 2021] GET /static/css/style.css => generated 39249 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 287 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 9/9] ::1 () {50 vars in 829 bytes} [Mon Dec 20 14:56:18 2021] GET /static/lib/easing/easing.min.js => generated 2302 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 299 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 10/10] ::1 () {50 vars in 817 bytes} [Mon Dec 20 14:56:18 2021] GET /static/lib/wow/wow.min.js => generated 8156 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 7 headers in 298 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 11/11] ::1 () {50 vars in 851 bytes} [Mon Dec 20 14:56:18 2021] GET /static/lib/owlcarousel/owl.carousel.min.js => generated 42766 bytes in 5 msecs via sendfile() (HTTP/1.1 200) 7 headers in 301 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 12/12] ::1 () {50 vars in 843 bytes} [Mon Dec 20 14:56:18 2021] GET /static/lib/isotope/isotope.pkgd.min.js => generated 35503 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 7 headers in 301 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 13/13] ::1 () {50 vars in 843 bytes} [Mon Dec 20 14:56:18 2021] GET /static/lib/lightbox/js/lightbox.min.js => generated 9418 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 7 headers in 299 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 14/14] ::1 () {50 vars in 841 bytes} [Mon Dec 20 14:56:18 2021] GET /static/lib/waypoints/waypoints.min.js => generated 9028 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 299 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 15/15] ::1 () {50 vars in 841 bytes} [Mon Dec 20 14:56:18 2021] GET /static/lib/counterup/counterup.min.js => generated 2406 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 299 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 16/16] ::1 () {50 vars in 825 bytes} [Mon Dec 20 14:56:18 2021] GET /static/lib/slick/slick.min.js => generated 42863 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 301 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 17/17] ::1 () {50 vars in 801 bytes} [Mon Dec 20 14:56:18 2021] GET /static/js/main.js => generated 3700 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 299 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 18/18] ::1 () {50 vars in 877 bytes} [Mon Dec 20 14:56:18 2021] GET /static/img/carousel-1.jpg => generated 205641 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 275 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 19/19] ::1 () {50 vars in 877 bytes} [Mon Dec 20 14:56:18 2021] GET /static/img/carousel-2.jpg => generated 100515 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 275 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 20/20] ::1 () {50 vars in 877 bytes} [Mon Dec 20 14:56:18 2021] GET /static/img/carousel-3.jpg => generated 127067 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 275 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 21/21] ::1 () {50 vars in 867 bytes} [Mon Dec 20 14:56:18 2021] GET /static/img/about.jpg => generated 165625 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 7 headers in 276 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 22/22] ::1 () {50 vars in 875 bytes} [Mon Dec 20 14:56:18 2021] GET /static/img/service-1.jpg => generated 66848 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 273 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 23/23] ::1 () {50 vars in 875 bytes} [Mon Dec 20 14:56:18 2021] GET /static/img/service-2.jpg => generated 42963 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 273 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 24/24] ::1 () {50 vars in 875 bytes} [Mon Dec 20 14:56:18 2021] GET /static/img/service-3.jpg => generated 45701 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 7 headers in 273 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 25/25] ::1 () {50 vars in 875 bytes} [Mon Dec 20 14:56:18 2021] GET /static/img/service-4.jpg => generated 50534 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 273 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 26/26] ::1 () {50 vars in 875 bytes} [Mon Dec 20 14:56:18 2021] GET /static/img/service-5.jpg => generated 48359 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 7 headers in 273 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 27/27] ::1 () {50 vars in 875 bytes} [Mon Dec 20 14:56:18 2021] GET /static/img/service-6.jpg => generated 53338 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 273 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 28/28] ::1 () {50 vars in 869 bytes} [Mon Dec 20 14:56:18 2021] GET /static/img/team-1.jpg => generated 24722 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 274 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 29/29] ::1 () {50 vars in 869 bytes} [Mon Dec 20 14:56:18 2021] GET /static/img/team-2.jpg => generated 23749 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 274 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 30/30] ::1 () {50 vars in 869 bytes} [Mon Dec 20 14:56:18 2021] GET /static/img/team-3.jpg => generated 26431 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 274 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 31/31] ::1 () {50 vars in 869 bytes} [Mon Dec 20 14:56:18 2021] GET /static/img/team-4.jpg => generated 18810 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 7 headers in 274 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 32/32] ::1 () {50 vars in 937 bytes} [Mon Dec 20 14:56:20 2021] GET /static/lib/lightbox/images/prev.png => generated 1360 bytes in 6 msecs via sendfile() (HTTP/1.1 200) 7 headers in 271 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 33/33] ::1 () {50 vars in 937 bytes} [Mon Dec 20 14:56:20 2021] GET /static/lib/lightbox/images/next.png => generated 1350 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 271 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 34/34] ::1 () {50 vars in 943 bytes} [Mon Dec 20 14:56:20 2021] GET /static/lib/lightbox/images/loading.gif => generated 8476 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 271 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 35/35] ::1 () {50 vars in 939 bytes} [Mon Dec 20 14:56:20 2021] GET /static/lib/lightbox/images/close.png => generated 280 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 269 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 36/36] ::1 () {50 vars in 871 bytes} [Mon Dec 20 14:56:20 2021] GET /static/img/favicon.ico => generated 232 bytes in 3 msecs (HTTP/1.1 404) 2 headers in 87 bytes (1 switches on core 0)
[pid: 32686|app: 0|req: 37/37] 192.168.0.245 () {40 vars in 750 bytes} [Mon Dec 20 15:41:53 2021] GET / => generated 26477 bytes in 3 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 32686|app: 0|req: 38/38] 192.168.0.245 () {40 vars in 714 bytes} [Mon Dec 20 15:41:53 2021] GET /static/lib/flaticon/font/flaticon.css => generated 1296 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 7 headers in 285 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 39/39] 192.168.0.245 () {40 vars in 708 bytes} [Mon Dec 20 15:41:53 2021] GET /static/lib/animate/animate.min.css => generated 16953 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 7 headers in 287 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 40/40] 192.168.0.245 () {40 vars in 740 bytes} [Mon Dec 20 15:41:53 2021] GET /static/lib/owlcarousel/assets/owl.carousel.min.css => generated 2936 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 283 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 41/41] 192.168.0.245 () {40 vars in 720 bytes} [Mon Dec 20 15:41:53 2021] GET /static/lib/lightbox/css/lightbox.min.css => generated 2608 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 284 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 42/42] 192.168.0.245 () {40 vars in 704 bytes} [Mon Dec 20 15:41:53 2021] GET /static/lib/slick/slick-theme.css => generated 3133 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 7 headers in 285 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 43/43] 192.168.0.245 () {40 vars in 692 bytes} [Mon Dec 20 15:41:53 2021] GET /static/lib/slick/slick.css => generated 1776 bytes in 6 msecs via sendfile() (HTTP/1.1 200) 7 headers in 284 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 44/44] 192.168.0.245 () {40 vars in 680 bytes} [Mon Dec 20 15:41:53 2021] GET /static/css/style.css => generated 39249 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 287 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 45/45] 192.168.0.245 () {40 vars in 675 bytes} [Mon Dec 20 15:41:53 2021] GET /static/lib/wow/wow.min.js => generated 8156 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 7 headers in 298 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 46/46] 192.168.0.245 () {40 vars in 687 bytes} [Mon Dec 20 15:41:53 2021] GET /static/lib/easing/easing.min.js => generated 2302 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 7 headers in 299 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 47/47] 192.168.0.245 () {40 vars in 709 bytes} [Mon Dec 20 15:41:53 2021] GET /static/lib/owlcarousel/owl.carousel.min.js => generated 42766 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 301 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 48/48] 192.168.0.245 () {40 vars in 701 bytes} [Mon Dec 20 15:41:53 2021] GET /static/lib/isotope/isotope.pkgd.min.js => generated 35503 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 7 headers in 301 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 49/49] 192.168.0.245 () {40 vars in 701 bytes} [Mon Dec 20 15:41:53 2021] GET /static/lib/lightbox/js/lightbox.min.js => generated 9418 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 7 headers in 299 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 50/50] 192.168.0.245 () {40 vars in 736 bytes} [Mon Dec 20 15:41:53 2021] GET /static/img/carousel-1.jpg => generated 205641 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 275 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 51/51] 192.168.0.245 () {40 vars in 699 bytes} [Mon Dec 20 15:41:53 2021] GET /static/lib/waypoints/waypoints.min.js => generated 9028 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 299 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 52/52] 192.168.0.245 () {40 vars in 699 bytes} [Mon Dec 20 15:41:53 2021] GET /static/lib/counterup/counterup.min.js => generated 2406 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 299 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 53/53] 192.168.0.245 () {40 vars in 683 bytes} [Mon Dec 20 15:41:53 2021] GET /static/lib/slick/slick.min.js => generated 42863 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 301 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 54/54] 192.168.0.245 () {40 vars in 659 bytes} [Mon Dec 20 15:41:53 2021] GET /static/js/main.js => generated 3700 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 299 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 55/55] 192.168.0.245 () {40 vars in 736 bytes} [Mon Dec 20 15:41:53 2021] GET /static/img/carousel-2.jpg => generated 100515 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 275 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 56/56] 192.168.0.245 () {40 vars in 736 bytes} [Mon Dec 20 15:41:53 2021] GET /static/img/carousel-3.jpg => generated 127067 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 275 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 57/57] 192.168.0.245 () {40 vars in 726 bytes} [Mon Dec 20 15:41:53 2021] GET /static/img/about.jpg => generated 165625 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 276 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 58/58] 192.168.0.245 () {40 vars in 734 bytes} [Mon Dec 20 15:41:53 2021] GET /static/img/service-1.jpg => generated 66848 bytes in 6 msecs via sendfile() (HTTP/1.1 200) 7 headers in 273 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 59/59] 192.168.0.245 () {40 vars in 734 bytes} [Mon Dec 20 15:41:53 2021] GET /static/img/service-2.jpg => generated 42963 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 7 headers in 273 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 60/60] 192.168.0.245 () {42 vars in 780 bytes} [Mon Dec 20 15:41:53 2021] GET /static/lib/flaticon/font/Flaticon.woff2 => generated 4308 bytes in 5 msecs via sendfile() (HTTP/1.1 200) 7 headers in 271 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 61/61] 192.168.0.245 () {40 vars in 734 bytes} [Mon Dec 20 15:41:53 2021] GET /static/img/service-3.jpg => generated 45701 bytes in 5 msecs via sendfile() (HTTP/1.1 200) 7 headers in 273 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 62/62] 192.168.0.245 () {40 vars in 734 bytes} [Mon Dec 20 15:41:53 2021] GET /static/img/service-4.jpg => generated 50534 bytes in 7 msecs via sendfile() (HTTP/1.1 200) 7 headers in 273 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 63/63] 192.168.0.245 () {40 vars in 734 bytes} [Mon Dec 20 15:41:53 2021] GET /static/img/service-5.jpg => generated 48359 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 273 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 64/64] 192.168.0.245 () {40 vars in 734 bytes} [Mon Dec 20 15:41:53 2021] GET /static/img/service-6.jpg => generated 53338 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 273 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 65/65] 192.168.0.245 () {40 vars in 728 bytes} [Mon Dec 20 15:41:53 2021] GET /static/img/team-1.jpg => generated 24722 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 7 headers in 274 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 66/66] 192.168.0.245 () {40 vars in 728 bytes} [Mon Dec 20 15:41:53 2021] GET /static/img/team-2.jpg => generated 23749 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 274 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 67/67] 192.168.0.245 () {40 vars in 728 bytes} [Mon Dec 20 15:41:53 2021] GET /static/img/team-3.jpg => generated 26431 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 274 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 68/68] 192.168.0.245 () {40 vars in 728 bytes} [Mon Dec 20 15:41:53 2021] GET /static/img/team-4.jpg => generated 18810 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 274 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 69/69] 192.168.0.245 () {40 vars in 796 bytes} [Mon Dec 20 15:41:53 2021] GET /static/lib/lightbox/images/next.png => generated 1350 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 271 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 70/70] 192.168.0.245 () {40 vars in 796 bytes} [Mon Dec 20 15:41:53 2021] GET /static/lib/lightbox/images/prev.png => generated 1360 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 271 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 71/71] 192.168.0.245 () {40 vars in 802 bytes} [Mon Dec 20 15:41:53 2021] GET /static/lib/lightbox/images/loading.gif => generated 8476 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 7 headers in 271 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 72/72] 192.168.0.245 () {40 vars in 798 bytes} [Mon Dec 20 15:41:53 2021] GET /static/lib/lightbox/images/close.png => generated 280 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 269 bytes (0 switches on core 0)
[pid: 32686|app: 0|req: 73/73] 192.168.0.245 () {40 vars in 730 bytes} [Mon Dec 20 15:41:53 2021] GET /static/img/favicon.ico => generated 232 bytes in 3 msecs (HTTP/1.1 404) 2 headers in 87 bytes (1 switches on core 0)
*** Starting uWSGI 2.0.20 (32bit) on [Mon Dec 20 15:45:28 2021] ***
compiled with version: 8.3.0 on 06 October 2021 05:59:48
os: Linux-5.10.63-v7l+ #1459 SMP Wed Oct 6 16:41:57 BST 2021
nodename: raspberrypi
machine: armv7l
clock source: unix
pcre jit disabled
detected number of CPU cores: 4
current working directory: /home/pi/SAIFE
detected binary path: /home/pi/.local/bin/uwsgi
*** WARNING: you are running uWSGI without its master process manager ***
your processes number limit is 27721
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address /tmp/uwsgi.sock fd 3
Python version: 3.7.3 (default, Jan 22 2021, 20:04:44) [GCC 8.3.0]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x5239c8
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 257632 bytes (251 KB) for 4 cores
*** Operational MODE: preforking ***
WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0x5239c8 pid: 952 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI worker 1 (pid: 952, cores: 1)
spawned uWSGI worker 2 (pid: 955, cores: 1)
spawned uWSGI worker 3 (pid: 956, cores: 1)
spawned uWSGI worker 4 (pid: 957, cores: 1)
[pid: 955|app: 0|req: 1/1] ::1 () {54 vars in 948 bytes} [Mon Dec 20 15:46:03 2021] GET / => generated 26477 bytes in 89 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 956|app: 0|req: 1/2] ::1 () {52 vars in 913 bytes} [Mon Dec 20 15:46:04 2021] GET /static/lib/flaticon/font/Flaticon.woff2 => generated 4308 bytes in 30 msecs via sendfile() (HTTP/1.1 200) 7 headers in 271 bytes (0 switches on core 0)
[pid: 957|app: 0|req: 1/3] ::1 () {52 vars in 917 bytes} [Mon Dec 20 15:47:01 2021] GET / => generated 26477 bytes in 95 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 956|app: 0|req: 2/4] ::1 () {50 vars in 871 bytes} [Mon Dec 20 15:47:04 2021] GET /static/img/favicon.ico => generated 232 bytes in 5 msecs (HTTP/1.1 404) 2 headers in 87 bytes (1 switches on core 0)
[pid: 956|app: 0|req: 3/5] 192.168.0.245 () {42 vars in 781 bytes} [Mon Dec 20 15:47:35 2021] GET / => generated 26477 bytes in 65 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 956|app: 0|req: 4/6] 192.168.0.245 () {42 vars in 802 bytes} [Mon Dec 20 15:47:36 2021] GET /about => generated 11575 bytes in 37 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 956|app: 0|req: 5/7] 192.168.0.245 () {42 vars in 811 bytes} [Mon Dec 20 15:47:37 2021] GET /service => generated 15734 bytes in 41 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 956|app: 0|req: 6/8] 192.168.0.245 () {42 vars in 807 bytes} [Mon Dec 20 15:47:37 2021] GET /team => generated 14635 bytes in 40 msecs (HTTP/1.1 200) 2 headers in 82 bytes (2 switches on core 0)
[pid: 956|app: 0|req: 7/9] 192.168.0.245 () {42 vars in 796 bytes} [Mon Dec 20 15:47:38 2021] GET / => generated 26477 bytes in 4 msecs (HTTP/1.1 200) 2 headers in 82 bytes (2 switches on core 0)
*** Starting uWSGI 2.0.20 (32bit) on [Mon Dec 20 15:51:01 2021] ***
compiled with version: 8.3.0 on 06 October 2021 05:59:48
os: Linux-5.10.63-v7l+ #1459 SMP Wed Oct 6 16:41:57 BST 2021
nodename: raspberrypi
machine: armv7l
clock source: unix
pcre jit disabled
detected number of CPU cores: 4
current working directory: /home/pi/SAIFE
detected binary path: /home/pi/.local/bin/uwsgi
*** WARNING: you are running uWSGI without its master process manager ***
your processes number limit is 27721
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address /tmp/uwsgi.sock fd 3
Python version: 3.7.3 (default, Jan 22 2021, 20:04:44) [GCC 8.3.0]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0xcf69d8
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 257632 bytes (251 KB) for 4 cores
*** Operational MODE: preforking ***
WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0xcf69d8 pid: 1383 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI worker 1 (pid: 1383, cores: 1)
spawned uWSGI worker 2 (pid: 1386, cores: 1)
spawned uWSGI worker 3 (pid: 1387, cores: 1)
spawned uWSGI worker 4 (pid: 1388, cores: 1)
[pid: 1383|app: 0|req: 1/1] ::1 () {54 vars in 948 bytes} [Mon Dec 20 15:51:10 2021] GET / => generated 26477 bytes in 113 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 1383|app: 0|req: 2/2] 192.168.0.245 () {42 vars in 806 bytes} [Mon Dec 20 16:50:31 2021] GET /service => generated 15734 bytes in 41 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 1388|app: 0|req: 1/3] 192.168.0.245 () {42 vars in 809 bytes} [Mon Dec 20 16:51:00 2021] GET /about => generated 11575 bytes in 97 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 1388|app: 0|req: 2/4] 192.168.0.245 () {42 vars in 811 bytes} [Mon Dec 20 16:51:01 2021] GET /service => generated 15734 bytes in 19 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 1386|app: 0|req: 1/5] 192.168.0.245 () {42 vars in 807 bytes} [Mon Dec 20 16:51:01 2021] GET /team => generated 14635 bytes in 106 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 1383|app: 0|req: 3/6] 192.168.0.245 () {42 vars in 796 bytes} [Mon Dec 20 16:51:01 2021] GET / => generated 26477 bytes in 2 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 1383|app: 0|req: 4/7] 192.168.0.245 () {42 vars in 806 bytes} [Mon Dec 20 17:06:08 2021] GET /service => generated 15734 bytes in 4 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 1386|app: 0|req: 2/8] 192.168.0.245 () {42 vars in 807 bytes} [Mon Dec 20 17:06:09 2021] GET /team => generated 14635 bytes in 4 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 1386|app: 0|req: 3/9] 192.168.0.245 () {42 vars in 806 bytes} [Mon Dec 20 17:06:10 2021] GET /about => generated 11575 bytes in 42 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 1383|app: 0|req: 5/10] 192.168.0.245 () {42 vars in 797 bytes} [Mon Dec 20 17:29:02 2021] GET / => generated 26477 bytes in 4 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 1383|app: 0|req: 6/11] 192.168.0.245 () {42 vars in 807 bytes} [Mon Dec 20 17:29:03 2021] GET /about => generated 11575 bytes in 41 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 1386|app: 0|req: 4/12] 192.168.0.245 () {44 vars in 837 bytes} [Mon Dec 20 17:29:04 2021] GET /about => generated 11575 bytes in 5 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 1388|app: 0|req: 3/13] 192.168.0.245 () {40 vars in 750 bytes} [Mon Dec 20 17:29:23 2021] GET / => generated 26477 bytes in 58 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 1388|app: 0|req: 4/14] 192.168.0.245 () {40 vars in 750 bytes} [Mon Dec 20 17:29:35 2021] GET / => generated 26477 bytes in 5 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 1388|app: 0|req: 5/15] 192.168.0.245 () {42 vars in 792 bytes} [Mon Dec 20 17:29:36 2021] GET / => generated 26477 bytes in 4 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 1388|app: 0|req: 6/16] 192.168.0.245 () {42 vars in 806 bytes} [Mon Dec 20 17:29:38 2021] GET /service => generated 15734 bytes in 4 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 1388|app: 0|req: 7/17] 192.168.0.245 () {42 vars in 799 bytes} [Mon Dec 20 17:29:38 2021] GET / => generated 26477 bytes in 4 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 1388|app: 0|req: 8/18] 192.168.0.245 () {42 vars in 800 bytes} [Mon Dec 20 17:29:39 2021] GET /team => generated 14635 bytes in 45 msecs (HTTP/1.1 200) 2 headers in 82 bytes (2 switches on core 0)
[pid: 1383|app: 0|req: 7/19] 192.168.0.245 () {42 vars in 796 bytes} [Mon Dec 20 17:29:41 2021] GET / => generated 26477 bytes in 4 msecs (HTTP/1.1 200) 2 headers in 82 bytes (2 switches on core 0)
[pid: 1388|app: 0|req: 9/20] 192.168.0.245 () {42 vars in 802 bytes} [Mon Dec 20 17:29:42 2021] GET /about => generated 11575 bytes in 4 msecs (HTTP/1.1 200) 2 headers in 82 bytes (2 switches on core 0)
[pid: 1388|app: 0|req: 10/21] 192.168.0.245 () {40 vars in 750 bytes} [Mon Dec 20 19:24:51 2021] GET / => generated 26477 bytes in 4 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 1388|app: 0|req: 11/22] 192.168.0.245 () {44 vars in 833 bytes} [Mon Dec 20 19:27:59 2021] GET /about => generated 11575 bytes in 4 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
*** Starting uWSGI 2.0.20 (32bit) on [Mon Dec 20 19:28:12 2021] ***
compiled with version: 8.3.0 on 06 October 2021 05:59:48
os: Linux-5.10.63-v7l+ #1459 SMP Wed Oct 6 16:41:57 BST 2021
nodename: raspberrypi
machine: armv7l
clock source: unix
pcre jit disabled
detected number of CPU cores: 4
current working directory: /home/pi/SAIFE
detected binary path: /home/pi/.local/bin/uwsgi
*** WARNING: you are running uWSGI without its master process manager ***
your processes number limit is 27721
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address /tmp/uwsgi.sock fd 3
Python version: 3.7.3 (default, Jan 22 2021, 20:04:44) [GCC 8.3.0]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x1d5e9d8
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 257632 bytes (251 KB) for 4 cores
*** Operational MODE: preforking ***
WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0x1d5e9d8 pid: 2075 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI worker 1 (pid: 2075, cores: 1)
spawned uWSGI worker 2 (pid: 2078, cores: 1)
spawned uWSGI worker 3 (pid: 2079, cores: 1)
spawned uWSGI worker 4 (pid: 2080, cores: 1)
[pid: 2080|app: 0|req: 1/1] 192.168.0.245 () {40 vars in 750 bytes} [Mon Dec 20 19:28:22 2021] GET / => generated 26477 bytes in 98 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 2080|app: 0|req: 2/2] 192.168.0.245 () {42 vars in 802 bytes} [Mon Dec 20 19:28:24 2021] GET /about => generated 11576 bytes in 42 msecs (HTTP/1.1 200) 2 headers in 82 bytes (2 switches on core 0)
[pid: 2080|app: 0|req: 3/3] 192.168.0.245 () {42 vars in 807 bytes} [Mon Dec 20 19:28:29 2021] GET /about => generated 11576 bytes in 4 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
*** Starting uWSGI 2.0.20 (32bit) on [Mon Dec 20 19:31:53 2021] ***
compiled with version: 8.3.0 on 06 October 2021 05:59:48
os: Linux-5.10.63-v7l+ #1459 SMP Wed Oct 6 16:41:57 BST 2021
nodename: raspberrypi
machine: armv7l
clock source: unix
pcre jit disabled
detected number of CPU cores: 4
current working directory: /home/pi/SAIFE
detected binary path: /home/pi/.local/bin/uwsgi
*** WARNING: you are running uWSGI without its master process manager ***
your processes number limit is 27721
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address /tmp/uwsgi.sock fd 3
Python version: 3.7.3 (default, Jan 22 2021, 20:04:44) [GCC 8.3.0]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x1a359d8
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 257632 bytes (251 KB) for 4 cores
*** Operational MODE: preforking ***
WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x1a359d8 pid: 2351 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI worker 1 (pid: 2351, cores: 1)
spawned uWSGI worker 2 (pid: 2356, cores: 1)
spawned uWSGI worker 3 (pid: 2357, cores: 1)
spawned uWSGI worker 4 (pid: 2358, cores: 1)
*** Starting uWSGI 2.0.20 (32bit) on [Mon Dec 20 19:31:54 2021] ***
compiled with version: 8.3.0 on 06 October 2021 05:59:48
os: Linux-5.10.63-v7l+ #1459 SMP Wed Oct 6 16:41:57 BST 2021
nodename: raspberrypi
machine: armv7l
clock source: unix
pcre jit disabled
detected number of CPU cores: 4
current working directory: /home/pi/SAIFE
detected binary path: /home/pi/.local/bin/uwsgi
*** WARNING: you are running uWSGI without its master process manager ***
your processes number limit is 27721
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address /tmp/uwsgi.sock fd 3
Python version: 3.7.3 (default, Jan 22 2021, 20:04:44) [GCC 8.3.0]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x132a9d8
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 257632 bytes (251 KB) for 4 cores
*** Operational MODE: preforking ***
WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0x132a9d8 pid: 2361 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI worker 1 (pid: 2361, cores: 1)
spawned uWSGI worker 2 (pid: 2364, cores: 1)
spawned uWSGI worker 3 (pid: 2365, cores: 1)
spawned uWSGI worker 4 (pid: 2366, cores: 1)
[pid: 2366|app: 0|req: 1/1] 192.168.0.245 () {44 vars in 838 bytes} [Mon Dec 20 19:31:58 2021] GET /about => generated 11586 bytes in 89 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 2366|app: 0|req: 2/2] 192.168.0.245 () {40 vars in 751 bytes} [Mon Dec 20 19:31:58 2021] GET /static/img/saife_introduce.png => generated 154682 bytes in 6 msecs via sendfile() (HTTP/1.1 200) 7 headers in 275 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 3/3] 192.168.0.245 () {42 vars in 807 bytes} [Mon Dec 20 19:32:15 2021] GET /about => generated 11586 bytes in 4 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 2366|app: 0|req: 4/4] 192.168.0.245 () {42 vars in 811 bytes} [Mon Dec 20 19:32:17 2021] GET /service => generated 15734 bytes in 47 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 2366|app: 0|req: 5/5] 192.168.0.245 () {42 vars in 807 bytes} [Mon Dec 20 19:32:18 2021] GET /team => generated 14635 bytes in 45 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 2366|app: 0|req: 6/6] 192.168.0.245 () {42 vars in 806 bytes} [Mon Dec 20 19:32:19 2021] GET /about => generated 11586 bytes in 4 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 2361|app: 0|req: 1/7] 192.168.0.245 () {42 vars in 797 bytes} [Mon Dec 20 19:32:19 2021] GET / => generated 26477 bytes in 108 msecs (HTTP/1.1 200) 2 headers in 82 bytes (2 switches on core 0)
[pid: 2361|app: 0|req: 2/8] 192.168.0.245 () {42 vars in 802 bytes} [Mon Dec 20 19:32:24 2021] GET /about => generated 11586 bytes in 39 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 2365|app: 0|req: 1/9] 192.168.0.245 () {42 vars in 811 bytes} [Mon Dec 20 19:32:33 2021] GET /service => generated 15734 bytes in 112 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 2365|app: 0|req: 2/10] 192.168.0.245 () {42 vars in 807 bytes} [Mon Dec 20 19:32:34 2021] GET /team => generated 14635 bytes in 18 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 2365|app: 0|req: 3/11] 192.168.0.238 () {40 vars in 755 bytes} [Mon Dec 20 19:32:53 2021] GET / => generated 26477 bytes in 58 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 2361|app: 0|req: 3/12] 192.168.0.238 () {40 vars in 719 bytes} [Mon Dec 20 19:32:57 2021] GET /static/lib/flaticon/font/flaticon.css => generated 1296 bytes in 9 msecs via sendfile() (HTTP/1.1 200) 7 headers in 285 bytes (0 switches on core 0)
[pid: 2365|app: 0|req: 4/13] 192.168.0.238 () {40 vars in 713 bytes} [Mon Dec 20 19:32:57 2021] GET /static/lib/animate/animate.min.css => generated 16953 bytes in 10 msecs via sendfile() (HTTP/1.1 200) 7 headers in 287 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 7/14] 192.168.0.238 () {40 vars in 745 bytes} [Mon Dec 20 19:32:57 2021] GET /static/lib/owlcarousel/assets/owl.carousel.min.css => generated 2936 bytes in 7 msecs via sendfile() (HTTP/1.1 200) 7 headers in 283 bytes (0 switches on core 0)
[pid: 2365|app: 0|req: 5/15] 192.168.0.238 () {40 vars in 725 bytes} [Mon Dec 20 19:32:57 2021] GET /static/lib/lightbox/css/lightbox.min.css => generated 2608 bytes in 5 msecs via sendfile() (HTTP/1.1 200) 7 headers in 284 bytes (1 switches on core 0)
[pid: 2361|app: 0|req: 4/16] 192.168.0.238 () {40 vars in 709 bytes} [Mon Dec 20 19:32:57 2021] GET /static/lib/slick/slick-theme.css => generated 3133 bytes in 6 msecs via sendfile() (HTTP/1.1 200) 7 headers in 285 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 8/17] 192.168.0.238 () {40 vars in 685 bytes} [Mon Dec 20 19:32:57 2021] GET /static/css/style.css => generated 39249 bytes in 5 msecs via sendfile() (HTTP/1.1 200) 7 headers in 287 bytes (0 switches on core 0)
[pid: 2364|app: 0|req: 1/18] 192.168.0.238 () {40 vars in 697 bytes} [Mon Dec 20 19:32:57 2021] GET /static/lib/slick/slick.css => generated 1776 bytes in 23 msecs via sendfile() (HTTP/1.1 200) 7 headers in 284 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 9/19] 192.168.0.238 () {40 vars in 692 bytes} [Mon Dec 20 19:32:57 2021] GET /static/lib/easing/easing.min.js => generated 2302 bytes in 5 msecs via sendfile() (HTTP/1.1 200) 7 headers in 299 bytes (0 switches on core 0)
[pid: 2361|app: 0|req: 5/21] 192.168.0.238 () {40 vars in 680 bytes} [Mon Dec 20 19:32:57 2021] GET /static/lib/wow/wow.min.js => generated 8156 bytes in 5 msecs via sendfile() (HTTP/1.1 200) 7 headers in 298 bytes (0 switches on core 0)
[pid: 2365|app: 0|req: 6/21] 192.168.0.238 () {40 vars in 706 bytes} [Mon Dec 20 19:32:57 2021] GET /static/lib/isotope/isotope.pkgd.min.js => generated 35503 bytes in 5 msecs via sendfile() (HTTP/1.1 200) 7 headers in 301 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 10/22] 192.168.0.238 () {40 vars in 706 bytes} [Mon Dec 20 19:32:57 2021] GET /static/lib/lightbox/js/lightbox.min.js => generated 9418 bytes in 5 msecs via sendfile() (HTTP/1.1 200) 7 headers in 299 bytes (0 switches on core 0)
[pid: 2364|app: 0|req: 2/23] 192.168.0.238 () {40 vars in 714 bytes} [Mon Dec 20 19:32:57 2021] GET /static/lib/owlcarousel/owl.carousel.min.js => generated 42766 bytes in 7 msecs via sendfile() (HTTP/1.1 200) 7 headers in 301 bytes (0 switches on core 0)
[pid: 2361|app: 0|req: 6/24] 192.168.0.238 () {40 vars in 704 bytes} [Mon Dec 20 19:32:57 2021] GET /static/lib/waypoints/waypoints.min.js => generated 9028 bytes in 5 msecs via sendfile() (HTTP/1.1 200) 7 headers in 299 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 11/25] 192.168.0.238 () {40 vars in 704 bytes} [Mon Dec 20 19:32:57 2021] GET /static/lib/counterup/counterup.min.js => generated 2406 bytes in 5 msecs via sendfile() (HTTP/1.1 200) 7 headers in 299 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 12/26] 192.168.0.238 () {40 vars in 688 bytes} [Mon Dec 20 19:32:58 2021] GET /static/lib/slick/slick.min.js => generated 42863 bytes in 5 msecs via sendfile() (HTTP/1.1 200) 7 headers in 301 bytes (0 switches on core 0)
[pid: 2365|app: 0|req: 7/27] 192.168.0.238 () {40 vars in 664 bytes} [Mon Dec 20 19:32:58 2021] GET /static/js/main.js => generated 3700 bytes in 5 msecs via sendfile() (HTTP/1.1 200) 7 headers in 299 bytes (0 switches on core 0)
[pid: 2361|app: 0|req: 7/28] 192.168.0.238 () {40 vars in 741 bytes} [Mon Dec 20 19:32:58 2021] GET /static/img/carousel-1.jpg => generated 205641 bytes in 5 msecs via sendfile() (HTTP/1.1 200) 7 headers in 275 bytes (0 switches on core 0)
[pid: 2364|app: 0|req: 3/29] 192.168.0.238 () {40 vars in 741 bytes} [Mon Dec 20 19:32:58 2021] GET /static/img/carousel-2.jpg => generated 100515 bytes in 5 msecs via sendfile() (HTTP/1.1 200) 7 headers in 275 bytes (0 switches on core 0)
[pid: 2365|app: 0|req: 8/30] 192.168.0.238 () {40 vars in 741 bytes} [Mon Dec 20 19:32:58 2021] GET /static/img/carousel-3.jpg => generated 127067 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 7 headers in 275 bytes (0 switches on core 0)
[pid: 2365|app: 0|req: 9/31] 192.168.0.238 () {40 vars in 731 bytes} [Mon Dec 20 19:32:58 2021] GET /static/img/about.jpg => generated 165625 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 276 bytes (0 switches on core 0)
[pid: 2365|app: 0|req: 10/32] 192.168.0.238 () {40 vars in 739 bytes} [Mon Dec 20 19:32:58 2021] GET /static/img/service-1.jpg => generated 66848 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 273 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 13/33] 192.168.0.238 () {40 vars in 739 bytes} [Mon Dec 20 19:32:58 2021] GET /static/img/service-2.jpg => generated 42963 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 273 bytes (1 switches on core 0)
[pid: 2366|app: 0|req: 14/35] 192.168.0.238 () {40 vars in 739 bytes} [Mon Dec 20 19:32:58 2021] GET /static/img/service-4.jpg => generated 50534 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 273 bytes (0 switches on core 0)
[pid: 2365|app: 0|req: 11/35] 192.168.0.238 () {40 vars in 739 bytes} [Mon Dec 20 19:32:58 2021] GET /static/img/service-3.jpg => generated 45701 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 273 bytes (0 switches on core 0)
[pid: 2365|app: 0|req: 12/37] 192.168.0.238 () {40 vars in 739 bytes} [Mon Dec 20 19:32:58 2021] GET /static/img/service-6.jpg => generated 53338 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 7 headers in 273 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 15/37] 192.168.0.238 () {40 vars in 739 bytes} [Mon Dec 20 19:32:58 2021] GET /static/img/service-5.jpg => generated 48359 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 7 headers in 273 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 16/38] 192.168.0.245 () {42 vars in 806 bytes} [Mon Dec 20 19:32:58 2021] GET /about => generated 11586 bytes in 4 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 2366|app: 0|req: 17/39] 192.168.0.238 () {40 vars in 733 bytes} [Mon Dec 20 19:32:58 2021] GET /static/img/team-1.jpg => generated 24722 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 7 headers in 274 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 18/40] 192.168.0.238 () {40 vars in 733 bytes} [Mon Dec 20 19:32:58 2021] GET /static/img/team-2.jpg => generated 23749 bytes in 5 msecs via sendfile() (HTTP/1.1 200) 7 headers in 274 bytes (1 switches on core 0)
[pid: 2361|app: 0|req: 8/41] 192.168.0.238 () {40 vars in 733 bytes} [Mon Dec 20 19:32:58 2021] GET /static/img/team-3.jpg => generated 26431 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 274 bytes (1 switches on core 0)
[pid: 2366|app: 0|req: 19/42] 192.168.0.238 () {40 vars in 733 bytes} [Mon Dec 20 19:32:58 2021] GET /static/img/team-4.jpg => generated 18810 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 7 headers in 274 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 20/43] 192.168.0.238 () {40 vars in 801 bytes} [Mon Dec 20 19:32:59 2021] GET /static/lib/lightbox/images/prev.png => generated 1360 bytes in 5 msecs via sendfile() (HTTP/1.1 200) 7 headers in 271 bytes (0 switches on core 0)
[pid: 2365|app: 0|req: 13/44] 192.168.0.238 () {40 vars in 803 bytes} [Mon Dec 20 19:32:59 2021] GET /static/lib/lightbox/images/close.png => generated 280 bytes in 5 msecs via sendfile() (HTTP/1.1 200) 7 headers in 269 bytes (0 switches on core 0)
[pid: 2361|app: 0|req: 9/45] 192.168.0.238 () {40 vars in 801 bytes} [Mon Dec 20 19:32:59 2021] GET /static/lib/lightbox/images/next.png => generated 1350 bytes in 6 msecs via sendfile() (HTTP/1.1 200) 7 headers in 271 bytes (0 switches on core 0)
[pid: 2364|app: 0|req: 4/44] 192.168.0.238 () {40 vars in 807 bytes} [Mon Dec 20 19:32:59 2021] GET /static/lib/lightbox/images/loading.gif => generated 8476 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 7 headers in 271 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 21/46] 192.168.0.238 () {40 vars in 735 bytes} [Mon Dec 20 19:32:59 2021] GET /static/img/favicon.ico => generated 232 bytes in 4 msecs (HTTP/1.1 404) 2 headers in 87 bytes (1 switches on core 0)
[pid: 2366|app: 0|req: 22/47] 192.168.0.2 () {40 vars in 730 bytes} [Mon Dec 20 19:33:47 2021] GET / => generated 26477 bytes in 57 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 2366|app: 0|req: 23/48] 192.168.0.2 () {40 vars in 705 bytes} [Mon Dec 20 19:33:47 2021] GET /static/lib/flaticon/font/flaticon.css => generated 1296 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 285 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 24/50] 192.168.0.2 () {40 vars in 699 bytes} [Mon Dec 20 19:33:47 2021] GET /static/lib/animate/animate.min.css => generated 16953 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 287 bytes (1 switches on core 0)
[pid: 2365|app: 0|req: 14/50] 192.168.0.2 () {40 vars in 731 bytes} [Mon Dec 20 19:33:47 2021] GET /static/lib/owlcarousel/assets/owl.carousel.min.css => generated 2936 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 283 bytes (0 switches on core 0)
[pid: 2361|app: 0|req: 10/51] 192.168.0.2 () {40 vars in 711 bytes} [Mon Dec 20 19:33:47 2021] GET /static/lib/lightbox/css/lightbox.min.css => generated 2608 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 284 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 25/52] 192.168.0.2 () {40 vars in 683 bytes} [Mon Dec 20 19:33:47 2021] GET /static/lib/slick/slick.css => generated 1776 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 284 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 26/53] 192.168.0.2 () {40 vars in 695 bytes} [Mon Dec 20 19:33:47 2021] GET /static/lib/slick/slick-theme.css => generated 3133 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 285 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 27/54] 192.168.0.2 () {40 vars in 671 bytes} [Mon Dec 20 19:33:47 2021] GET /static/css/style.css => generated 39249 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 287 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 28/55] 192.168.0.2 () {40 vars in 678 bytes} [Mon Dec 20 19:33:47 2021] GET /static/lib/easing/easing.min.js => generated 2302 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 299 bytes (0 switches on core 0)
[pid: 2361|app: 0|req: 11/56] 192.168.0.2 () {40 vars in 666 bytes} [Mon Dec 20 19:33:47 2021] GET /static/lib/wow/wow.min.js => generated 8156 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 298 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 29/57] 192.168.0.2 () {40 vars in 700 bytes} [Mon Dec 20 19:33:47 2021] GET /static/lib/owlcarousel/owl.carousel.min.js => generated 42766 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 301 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 30/58] 192.168.0.2 () {40 vars in 692 bytes} [Mon Dec 20 19:33:47 2021] GET /static/lib/isotope/isotope.pkgd.min.js => generated 35503 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 301 bytes (0 switches on core 0)
[pid: 2364|app: 0|req: 5/60] 192.168.0.2 () {40 vars in 690 bytes} [Mon Dec 20 19:33:47 2021] GET /static/lib/waypoints/waypoints.min.js => generated 9028 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 299 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 31/60] 192.168.0.2 () {40 vars in 692 bytes} [Mon Dec 20 19:33:47 2021] GET /static/lib/lightbox/js/lightbox.min.js => generated 9418 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 299 bytes (0 switches on core 0)
[pid: 2364|app: 0|req: 6/61] 192.168.0.2 () {40 vars in 690 bytes} [Mon Dec 20 19:33:47 2021] GET /static/lib/counterup/counterup.min.js => generated 2406 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 299 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 32/62] 192.168.0.2 () {40 vars in 716 bytes} [Mon Dec 20 19:33:47 2021] GET /static/img/carousel-2.jpg => generated 100515 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 275 bytes (0 switches on core 0)
[pid: 2364|app: 0|req: 7/63] 192.168.0.2 () {40 vars in 716 bytes} [Mon Dec 20 19:33:47 2021] GET /static/img/carousel-1.jpg => generated 205641 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 275 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 33/64] 192.168.0.2 () {40 vars in 674 bytes} [Mon Dec 20 19:33:47 2021] GET /static/lib/slick/slick.min.js => generated 42863 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 301 bytes (0 switches on core 0)
[pid: 2361|app: 0|req: 12/65] 192.168.0.2 () {40 vars in 650 bytes} [Mon Dec 20 19:33:47 2021] GET /static/js/main.js => generated 3700 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 299 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 34/66] 192.168.0.2 () {40 vars in 716 bytes} [Mon Dec 20 19:33:47 2021] GET /static/img/carousel-3.jpg => generated 127067 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 275 bytes (0 switches on core 0)
[pid: 2365|app: 0|req: 15/67] 192.168.0.2 () {40 vars in 706 bytes} [Mon Dec 20 19:33:47 2021] GET /static/img/about.jpg => generated 165625 bytes in 7 msecs via sendfile() (HTTP/1.1 200) 7 headers in 276 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 35/68] 192.168.0.2 () {40 vars in 714 bytes} [Mon Dec 20 19:33:47 2021] GET /static/img/service-1.jpg => generated 66848 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 273 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 36/69] 192.168.0.2 () {40 vars in 714 bytes} [Mon Dec 20 19:33:47 2021] GET /static/img/service-2.jpg => generated 42963 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 273 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 37/70] 192.168.0.2 () {40 vars in 714 bytes} [Mon Dec 20 19:33:47 2021] GET /static/img/service-3.jpg => generated 45701 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 273 bytes (0 switches on core 0)
[pid: 2361|app: 0|req: 13/71] 192.168.0.2 () {40 vars in 714 bytes} [Mon Dec 20 19:33:47 2021] GET /static/img/service-4.jpg => generated 50534 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 273 bytes (0 switches on core 0)
[pid: 2365|app: 0|req: 16/72] 192.168.0.2 () {40 vars in 714 bytes} [Mon Dec 20 19:33:47 2021] GET /static/img/service-6.jpg => generated 53338 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 273 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 38/72] 192.168.0.2 () {40 vars in 714 bytes} [Mon Dec 20 19:33:47 2021] GET /static/img/service-5.jpg => generated 48359 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 273 bytes (0 switches on core 0)
[pid: 2361|app: 0|req: 14/73] 192.168.0.2 () {40 vars in 708 bytes} [Mon Dec 20 19:33:47 2021] GET /static/img/team-1.jpg => generated 24722 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 274 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 39/74] 192.168.0.2 () {40 vars in 708 bytes} [Mon Dec 20 19:33:47 2021] GET /static/img/team-2.jpg => generated 23749 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 274 bytes (0 switches on core 0)
[pid: 2361|app: 0|req: 15/75] 192.168.0.2 () {40 vars in 708 bytes} [Mon Dec 20 19:33:47 2021] GET /static/img/team-3.jpg => generated 26431 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 274 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 40/76] 192.168.0.2 () {40 vars in 708 bytes} [Mon Dec 20 19:33:47 2021] GET /static/img/team-4.jpg => generated 18810 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 7 headers in 274 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 41/77] 192.168.0.2 () {40 vars in 776 bytes} [Mon Dec 20 19:33:48 2021] GET /static/lib/lightbox/images/prev.png => generated 1360 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 7 headers in 271 bytes (0 switches on core 0)
[pid: 2361|app: 0|req: 16/78] 192.168.0.2 () {40 vars in 776 bytes} [Mon Dec 20 19:33:48 2021] GET /static/lib/lightbox/images/next.png => generated 1350 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 7 headers in 271 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 42/79] 192.168.0.2 () {40 vars in 782 bytes} [Mon Dec 20 19:33:48 2021] GET /static/lib/lightbox/images/loading.gif => generated 8476 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 7 headers in 271 bytes (1 switches on core 0)
[pid: 2365|app: 0|req: 17/80] 192.168.0.2 () {40 vars in 778 bytes} [Mon Dec 20 19:33:48 2021] GET /static/lib/lightbox/images/close.png => generated 280 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 7 headers in 269 bytes (1 switches on core 0)
[pid: 2366|app: 0|req: 43/81] 192.168.0.2 () {40 vars in 710 bytes} [Mon Dec 20 19:33:48 2021] GET /static/img/favicon.ico => generated 232 bytes in 2 msecs (HTTP/1.1 404) 2 headers in 87 bytes (1 switches on core 0)
[pid: 2366|app: 0|req: 44/82] 192.168.0.2 () {42 vars in 771 bytes} [Mon Dec 20 19:36:05 2021] GET /static/lib/flaticon/font/Flaticon.woff2 => generated 4308 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 7 headers in 271 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 45/83] 192.168.0.2 () {42 vars in 782 bytes} [Mon Dec 20 19:36:06 2021] GET /about => generated 11586 bytes in 4 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 2366|app: 0|req: 46/84] 192.168.0.2 () {40 vars in 731 bytes} [Mon Dec 20 19:36:06 2021] GET /static/img/saife_introduce.png => generated 154682 bytes in 5 msecs via sendfile() (HTTP/1.1 200) 7 headers in 275 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 47/85] 192.168.0.2 () {42 vars in 787 bytes} [Mon Dec 20 19:36:11 2021] GET /about => generated 11586 bytes in 5 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 2366|app: 0|req: 48/86] 192.168.0.2 () {42 vars in 787 bytes} [Mon Dec 20 19:36:14 2021] GET /about => generated 11586 bytes in 4 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 2366|app: 0|req: 49/87] 192.168.0.2 () {42 vars in 791 bytes} [Mon Dec 20 19:36:18 2021] GET /service => generated 15734 bytes in 4 msecs (HTTP/1.1 200) 2 headers in 82 bytes (2 switches on core 0)
[pid: 2366|app: 0|req: 50/88] 192.168.0.2 () {42 vars in 793 bytes} [Mon Dec 20 19:36:38 2021] GET /service => generated 15734 bytes in 4 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 2366|app: 0|req: 51/89] 192.168.0.2 () {42 vars in 787 bytes} [Mon Dec 20 19:36:39 2021] GET /team => generated 14635 bytes in 4 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 2366|app: 0|req: 52/90] 192.168.0.2 () {42 vars in 784 bytes} [Mon Dec 20 19:37:00 2021] GET /team => generated 14635 bytes in 4 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 2365|app: 0|req: 18/91] 192.168.0.245 () {42 vars in 807 bytes} [Mon Dec 20 20:00:55 2021] GET /about => generated 11586 bytes in 42 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 2365|app: 0|req: 19/92] 192.168.0.245 () {42 vars in 811 bytes} [Mon Dec 20 20:00:59 2021] GET /service => generated 15734 bytes in 4 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 2366|app: 0|req: 53/93] 192.168.0.245 () {42 vars in 807 bytes} [Mon Dec 20 20:01:08 2021] GET /team => generated 14635 bytes in 4 msecs (HTTP/1.1 200) 2 headers in 82 bytes (2 switches on core 0)
[pid: 2361|app: 0|req: 17/94] 192.168.0.245 () {42 vars in 796 bytes} [Mon Dec 20 20:01:10 2021] GET / => generated 26477 bytes in 4 msecs (HTTP/1.1 200) 2 headers in 82 bytes (2 switches on core 0)
[pid: 2366|app: 0|req: 54/95] 192.168.0.238 () {42 vars in 785 bytes} [Mon Dec 20 20:29:43 2021] GET /static/lib/flaticon/font/Flaticon.woff2 => generated 4308 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 7 headers in 271 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 55/96] 192.168.0.245 () {40 vars in 750 bytes} [Tue Dec 21 09:22:56 2021] GET / => generated 26477 bytes in 4 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 2366|app: 0|req: 56/97] 192.168.0.245 () {44 vars in 822 bytes} [Tue Dec 21 09:22:56 2021] GET /static/lib/animate/animate.min.css => generated 0 bytes in 5 msecs (HTTP/1.1 304) 4 headers in 189 bytes (0 switches on core 0)
[pid: 2365|app: 0|req: 20/98] 192.168.0.245 () {44 vars in 827 bytes} [Tue Dec 21 09:22:56 2021] GET /static/lib/flaticon/font/flaticon.css => generated 0 bytes in 5 msecs (HTTP/1.1 304) 4 headers in 188 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 57/99] 192.168.0.245 () {44 vars in 851 bytes} [Tue Dec 21 09:22:56 2021] GET /static/lib/owlcarousel/assets/owl.carousel.min.css => generated 0 bytes in 5 msecs (HTTP/1.1 304) 4 headers in 186 bytes (0 switches on core 0)
[pid: 2365|app: 0|req: 21/100] 192.168.0.245 () {44 vars in 832 bytes} [Tue Dec 21 09:22:56 2021] GET /static/lib/lightbox/css/lightbox.min.css => generated 0 bytes in 6 msecs (HTTP/1.1 304) 4 headers in 187 bytes (0 switches on core 0)
[pid: 2361|app: 0|req: 18/101] 192.168.0.245 () {44 vars in 804 bytes} [Tue Dec 21 09:22:56 2021] GET /static/lib/slick/slick.css => generated 0 bytes in 5 msecs (HTTP/1.1 304) 4 headers in 187 bytes (0 switches on core 0)
[pid: 2364|app: 0|req: 8/102] 192.168.0.245 () {44 vars in 817 bytes} [Tue Dec 21 09:22:56 2021] GET /static/lib/slick/slick-theme.css => generated 0 bytes in 8 msecs (HTTP/1.1 304) 4 headers in 188 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 58/103] 192.168.0.245 () {44 vars in 794 bytes} [Tue Dec 21 09:22:56 2021] GET /static/css/style.css => generated 0 bytes in 5 msecs (HTTP/1.1 304) 4 headers in 189 bytes (0 switches on core 0)
[pid: 2361|app: 0|req: 19/104] 192.168.0.245 () {44 vars in 800 bytes} [Tue Dec 21 09:22:56 2021] GET /static/lib/easing/easing.min.js => generated 0 bytes in 6 msecs (HTTP/1.1 304) 4 headers in 188 bytes (0 switches on core 0)
[pid: 2364|app: 0|req: 9/105] 192.168.0.245 () {44 vars in 787 bytes} [Tue Dec 21 09:22:56 2021] GET /static/lib/wow/wow.min.js => generated 0 bytes in 6 msecs (HTTP/1.1 304) 4 headers in 187 bytes (0 switches on core 0)
[pid: 2361|app: 0|req: 20/106] 192.168.0.245 () {44 vars in 814 bytes} [Tue Dec 21 09:22:56 2021] GET /static/lib/lightbox/js/lightbox.min.js => generated 0 bytes in 5 msecs (HTTP/1.1 304) 4 headers in 188 bytes (0 switches on core 0)
[pid: 2365|app: 0|req: 22/107] 192.168.0.245 () {44 vars in 823 bytes} [Tue Dec 21 09:22:56 2021] GET /static/lib/owlcarousel/owl.carousel.min.js => generated 0 bytes in 9 msecs (HTTP/1.1 304) 4 headers in 189 bytes (0 switches on core 0)
[pid: 2364|app: 0|req: 10/108] 192.168.0.245 () {44 vars in 850 bytes} [Tue Dec 21 09:22:56 2021] GET /static/img/carousel-2.jpg => generated 0 bytes in 5 msecs (HTTP/1.1 304) 4 headers in 189 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 59/109] 192.168.0.245 () {44 vars in 815 bytes} [Tue Dec 21 09:22:56 2021] GET /static/lib/isotope/isotope.pkgd.min.js => generated 0 bytes in 10 msecs (HTTP/1.1 304) 4 headers in 189 bytes (0 switches on core 0)
[pid: 2361|app: 0|req: 21/110] 192.168.0.245 () {44 vars in 850 bytes} [Tue Dec 21 09:22:56 2021] GET /static/img/carousel-3.jpg => generated 0 bytes in 5 msecs (HTTP/1.1 304) 4 headers in 189 bytes (0 switches on core 0)
[pid: 2364|app: 0|req: 11/111] 192.168.0.245 () {44 vars in 841 bytes} [Tue Dec 21 09:22:56 2021] GET /static/img/about.jpg => generated 0 bytes in 5 msecs (HTTP/1.1 304) 4 headers in 190 bytes (0 switches on core 0)
[pid: 2365|app: 0|req: 23/112] 192.168.0.245 () {44 vars in 850 bytes} [Tue Dec 21 09:22:56 2021] GET /static/img/carousel-1.jpg => generated 0 bytes in 10 msecs (HTTP/1.1 304) 4 headers in 189 bytes (0 switches on core 0)
[pid: 2361|app: 0|req: 22/113] 192.168.0.245 () {44 vars in 812 bytes} [Tue Dec 21 09:22:56 2021] GET /static/lib/waypoints/waypoints.min.js => generated 0 bytes in 5 msecs (HTTP/1.1 304) 4 headers in 188 bytes (0 switches on core 0)
[pid: 2364|app: 0|req: 12/114] 192.168.0.245 () {44 vars in 797 bytes} [Tue Dec 21 09:22:56 2021] GET /static/lib/slick/slick.min.js => generated 0 bytes in 5 msecs (HTTP/1.1 304) 4 headers in 189 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 60/115] 192.168.0.245 () {44 vars in 812 bytes} [Tue Dec 21 09:22:56 2021] GET /static/lib/counterup/counterup.min.js => generated 0 bytes in 9 msecs (HTTP/1.1 304) 4 headers in 188 bytes (0 switches on core 0)
[pid: 2361|app: 0|req: 23/116] 192.168.0.245 () {44 vars in 847 bytes} [Tue Dec 21 09:22:56 2021] GET /static/img/service-1.jpg => generated 0 bytes in 5 msecs (HTTP/1.1 304) 4 headers in 188 bytes (0 switches on core 0)
[pid: 2365|app: 0|req: 24/117] 192.168.0.245 () {44 vars in 772 bytes} [Tue Dec 21 09:22:56 2021] GET /static/js/main.js => generated 0 bytes in 9 msecs (HTTP/1.1 304) 4 headers in 188 bytes (0 switches on core 0)
[pid: 2364|app: 0|req: 13/118] 192.168.0.245 () {44 vars in 847 bytes} [Tue Dec 21 09:22:56 2021] GET /static/img/service-2.jpg => generated 0 bytes in 6 msecs (HTTP/1.1 304) 4 headers in 188 bytes (0 switches on core 0)
[pid: 2361|app: 0|req: 24/119] 192.168.0.245 () {44 vars in 847 bytes} [Tue Dec 21 09:22:56 2021] GET /static/img/service-3.jpg => generated 0 bytes in 5 msecs (HTTP/1.1 304) 4 headers in 188 bytes (0 switches on core 0)
[pid: 2364|app: 0|req: 14/121] 192.168.0.245 () {44 vars in 847 bytes} [Tue Dec 21 09:22:56 2021] GET /static/img/service-5.jpg => generated 0 bytes in 5 msecs (HTTP/1.1 304) 4 headers in 188 bytes (0 switches on core 0)
[pid: 2361|app: 0|req: 25/121] 192.168.0.245 () {44 vars in 847 bytes} [Tue Dec 21 09:22:56 2021] GET /static/img/service-6.jpg => generated 0 bytes in 5 msecs (HTTP/1.1 304) 4 headers in 188 bytes (0 switches on core 0)
[pid: 2366|app: 0|req: 61/122] 192.168.0.245 () {44 vars in 847 bytes} [Tue Dec 21 09:22:56 2021] GET /static/img/service-4.jpg => generated 0 bytes in 10 msecs (HTTP/1.1 304) 4 headers in 188 bytes (0 switches on core 0)
[pid: 2365|app: 0|req: 25/123] 192.168.0.245 () {44 vars in 842 bytes} [Tue Dec 21 09:22:56 2021] GET /static/img/team-1.jpg => generated 0 bytes in 6 msecs (HTTP/1.1 304) 4 headers in 189 bytes (0 switches on core 0)
[pid: 2361|app: 0|req: 26/125] 192.168.0.245 () {44 vars in 842 bytes} [Tue Dec 21 09:22:56 2021] GET /static/img/team-3.jpg => generated 0 bytes in 2 msecs (HTTP/1.1 304) 4 headers in 189 bytes (0 switches on core 0)
[pid: 2364|app: 0|req: 15/125] 192.168.0.245 () {44 vars in 842 bytes} [Tue Dec 21 09:22:56 2021] GET /static/img/team-2.jpg => generated 0 bytes in 2 msecs (HTTP/1.1 304) 4 headers in 189 bytes (0 switches on core 0)
[pid: 2361|app: 0|req: 27/126] 192.168.0.245 () {44 vars in 842 bytes} [Tue Dec 21 09:22:56 2021] GET /static/img/team-4.jpg => generated 0 bytes in 2 msecs (HTTP/1.1 304) 4 headers in 189 bytes (0 switches on core 0)
[pid: 2364|app: 0|req: 16/127] 192.168.0.245 () {46 vars in 892 bytes} [Tue Dec 21 09:22:56 2021] GET /static/lib/flaticon/font/Flaticon.woff2 => generated 0 bytes in 2 msecs (HTTP/1.1 304) 4 headers in 187 bytes (0 switches on core 0)
[pid: 2361|app: 0|req: 28/128] 192.168.0.245 () {44 vars in 909 bytes} [Tue Dec 21 09:22:56 2021] GET /static/lib/lightbox/images/prev.png => generated 0 bytes in 2 msecs (HTTP/1.1 304) 4 headers in 188 bytes (0 switches on core 0)
[pid: 2365|app: 0|req: 26/129] 192.168.0.245 () {44 vars in 909 bytes} [Tue Dec 21 09:22:56 2021] GET /static/lib/lightbox/images/next.png => generated 0 bytes in 2 msecs (HTTP/1.1 304) 4 headers in 188 bytes (0 switches on core 0)
[pid: 2361|app: 0|req: 29/130] 192.168.0.245 () {44 vars in 910 bytes} [Tue Dec 21 09:22:56 2021] GET /static/lib/lightbox/images/close.png => generated 0 bytes in 2 msecs (HTTP/1.1 304) 4 headers in 187 bytes (0 switches on core 0)
[pid: 2364|app: 0|req: 17/130] 192.168.0.245 () {44 vars in 915 bytes} [Tue Dec 21 09:22:56 2021] GET /static/lib/lightbox/images/loading.gif => generated 0 bytes in 2 msecs (HTTP/1.1 304) 4 headers in 188 bytes (0 switches on core 0)
[pid: 2365|app: 0|req: 27/131] 192.168.0.245 () {40 vars in 730 bytes} [Tue Dec 21 09:22:56 2021] GET /static/img/favicon.ico => generated 232 bytes in 2 msecs (HTTP/1.1 404) 2 headers in 87 bytes (1 switches on core 0)
[pid: 2361|app: 0|req: 30/132] 192.168.0.245 () {42 vars in 802 bytes} [Tue Dec 21 09:22:58 2021] GET /about => generated 11586 bytes in 4 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 2365|app: 0|req: 28/133] 192.168.0.245 () {44 vars in 866 bytes} [Tue Dec 21 09:22:58 2021] GET /static/img/saife_introduce.png => generated 0 bytes in 4 msecs (HTTP/1.1 304) 4 headers in 190 bytes (0 switches on core 0)
[pid: 2361|app: 0|req: 31/134] 192.168.0.245 () {42 vars in 811 bytes} [Tue Dec 21 09:22:58 2021] GET /service => generated 15734 bytes in 46 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 2365|app: 0|req: 29/135] 192.168.0.245 () {42 vars in 799 bytes} [Tue Dec 21 09:22:59 2021] GET / => generated 26477 bytes in 4 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
Gracefully killing worker 1 (pid: 32111)...
VACUUM WARNING: unix socket /tmp/uwsgi.sock changed inode. Skip removal
Gracefully killing worker 1 (pid: 32670)...
Gracefully killing worker 4 (pid: 2366)...
VACUUM WARNING: unix socket /tmp/uwsgi.sock changed inode. Skip removal
Gracefully killing worker 2 (pid: 32219)...
Gracefully killing worker 3 (pid: 1387)...
Gracefully killing worker 1 (pid: 2361)...
Gracefully killing worker 1 (pid: 32686)...
VACUUM WARNING: unix socket /tmp/uwsgi.sock changed inode. Skip removal
SIGINT/SIGTERM received...killing workers...
worker 2 buried after 0 seconds
Gracefully killing worker 1 (pid: 32139)...
VACUUM WARNING: unix socket /tmp/uwsgi.sock changed inode. Skip removal
Gracefully killing worker 1 (pid: 32174)...
VACUUM WARNING: unix socket /tmp/uwsgi.sock changed inode. Skip removal
Gracefully killing worker 4 (pid: 1388)...
Gracefully killing worker 1 (pid: 952)...
VACUUM WARNING: unix socket /tmp/uwsgi.sock changed inode. Skip removal
Gracefully killing worker 3 (pid: 2357)...
Gracefully killing worker 3 (pid: 956)...
Gracefully killing worker 2 (pid: 2078)...
Gracefully killing worker 1 (pid: 1383)...
VACUUM WARNING: unix socket /tmp/uwsgi.sock changed inode. Skip removal
Gracefully killing worker 3 (pid: 2365)...
Gracefully killing worker 1 (pid: 2075)...
VACUUM: unix socket /tmp/uwsgi.sock removed.
unlink(): No such file or directory [core/uwsgi.c line 1662]
Gracefully killing worker 2 (pid: 2356)...
Gracefully killing worker 1 (pid: 2351)...
unlink(): No such file or directory [core/uwsgi.c line 1662]
unlink(): No such file or directory [core/uwsgi.c line 1662]
unlink(): No such file or directory [core/uwsgi.c line 1662]
unlink(): No such file or directory [core/uwsgi.c line 1662]
unlink(): No such file or directory [core/uwsgi.c line 1662]
worker 1 buried after 1 seconds
worker 3 buried after 1 seconds
worker 4 buried after 1 seconds
goodbye to uWSGI.
unlink(): No such file or directory [core/uwsgi.c line 1662]
*** Starting uWSGI 2.0.20 (32bit) on [Tue Dec 21 11:11:00 2021] ***
compiled with version: 8.3.0 on 06 October 2021 05:59:48
os: Linux-5.10.63-v7l+ #1459 SMP Wed Oct 6 16:41:57 BST 2021
nodename: raspberrypi
machine: armv7l
clock source: unix
pcre jit disabled
detected number of CPU cores: 4
current working directory: /home/pi/SAIFE
detected binary path: /home/pi/.local/bin/uwsgi
*** WARNING: you are running uWSGI without its master process manager ***
your processes number limit is 27721
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address /tmp/uwsgi.sock fd 3
Python version: 3.7.3 (default, Jan 22 2021, 20:04:44) [GCC 8.3.0]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x18d8ab0
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 257632 bytes (251 KB) for 4 cores
*** Operational MODE: preforking ***
WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x18d8ab0 pid: 2864 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI worker 1 (pid: 2864, cores: 1)
spawned uWSGI worker 2 (pid: 2867, cores: 1)
spawned uWSGI worker 3 (pid: 2868, cores: 1)
spawned uWSGI worker 4 (pid: 2869, cores: 1)
[pid: 2864|app: 0|req: 1/1] 192.168.0.245 () {42 vars in 832 bytes} [Tue Dec 21 11:11:16 2021] GET / => generated 106 bytes in 69 msecs (HTTP/1.1 200) 3 headers in 94 bytes (1 switches on core 0)
[pid: 2869|app: 0|req: 1/2] 192.168.0.245 () {42 vars in 790 bytes} [Tue Dec 21 11:11:16 2021] GET /favicon.ico => generated 232 bytes in 25 msecs (HTTP/1.1 404) 2 headers in 87 bytes (1 switches on core 0)
[pid: 2869|app: 0|req: 2/3] 192.168.0.245 () {44 vars in 886 bytes} [Tue Dec 21 11:11:19 2021] GET /logout => generated 208 bytes in 31 msecs (HTTP/1.1 302) 4 headers in 201 bytes (2 switches on core 0)
[pid: 2868|app: 0|req: 1/4] 192.168.0.245 () {42 vars in 792 bytes} [Tue Dec 21 11:11:19 2021] GET / => generated 269 bytes in 79 msecs (HTTP/1.1 200) 2 headers in 80 bytes (1 switches on core 0)
[pid: 2864|app: 0|req: 2/5] 192.168.0.245 () {42 vars in 857 bytes} [Tue Dec 21 11:11:23 2021] GET /login?loginId=admin&loginPw=admin => generated 218 bytes in 23 msecs (HTTP/1.1 302) 5 headers in 239 bytes (1 switches on core 0)
[pid: 2868|app: 0|req: 2/6] 192.168.0.245 () {44 vars in 884 bytes} [Tue Dec 21 11:11:23 2021] GET /index => generated 26488 bytes in 57 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 2868|app: 0|req: 3/7] 192.168.0.245 () {42 vars in 817 bytes} [Tue Dec 21 11:11:23 2021] GET /static/img/favicon.ico => generated 232 bytes in 3 msecs (HTTP/1.1 404) 2 headers in 87 bytes (1 switches on core 0)
[pid: 2868|app: 0|req: 4/8] 192.168.0.245 () {42 vars in 832 bytes} [Tue Dec 21 11:13:01 2021] GET / => generated 106 bytes in 5 msecs (HTTP/1.1 200) 3 headers in 94 bytes (1 switches on core 0)
[pid: 2868|app: 0|req: 5/9] 192.168.0.245 () {44 vars in 886 bytes} [Tue Dec 21 11:13:02 2021] GET /logout => generated 208 bytes in 20 msecs (HTTP/1.1 302) 4 headers in 201 bytes (1 switches on core 0)
[pid: 2864|app: 0|req: 3/10] 192.168.0.245 () {42 vars in 792 bytes} [Tue Dec 21 11:13:02 2021] GET / => generated 269 bytes in 3 msecs (HTTP/1.1 200) 2 headers in 80 bytes (1 switches on core 0)
[pid: 2868|app: 0|req: 6/11] 192.168.0.245 () {42 vars in 857 bytes} [Tue Dec 21 11:34:52 2021] GET /login?loginId=admin&loginPw=admin => generated 218 bytes in 9 msecs (HTTP/1.1 302) 5 headers in 239 bytes (1 switches on core 0)
[pid: 2868|app: 0|req: 7/12] 192.168.0.245 () {44 vars in 884 bytes} [Tue Dec 21 11:34:52 2021] GET /index => generated 26488 bytes in 7 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 2868|app: 0|req: 8/13] 192.168.0.245 () {46 vars in 915 bytes} [Tue Dec 21 11:35:46 2021] GET /index => generated 26488 bytes in 7 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
*** Starting uWSGI 2.0.20 (32bit) on [Tue Dec 21 13:46:00 2021] ***
compiled with version: 8.3.0 on 06 October 2021 05:59:48
os: Linux-5.10.63-v7l+ #1459 SMP Wed Oct 6 16:41:57 BST 2021
nodename: raspberrypi
machine: armv7l
clock source: unix
pcre jit disabled
detected number of CPU cores: 4
current working directory: /home/pi/SAIFE
detected binary path: /home/pi/.local/bin/uwsgi
*** WARNING: you are running uWSGI without its master process manager ***
your processes number limit is 27721
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address /tmp/uwsgi.sock fd 3
Python version: 3.7.3 (default, Jan 22 2021, 20:04:44) [GCC 8.3.0]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x20949d8
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 257632 bytes (251 KB) for 4 cores
*** Operational MODE: preforking ***
WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x20949d8 pid: 8387 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI worker 1 (pid: 8387, cores: 1)
spawned uWSGI worker 2 (pid: 8392, cores: 1)
spawned uWSGI worker 3 (pid: 8393, cores: 1)
spawned uWSGI worker 4 (pid: 8394, cores: 1)
[pid: 8393|app: 0|req: 1/1] 192.168.0.245 () {42 vars in 774 bytes} [Tue Dec 21 13:46:24 2021] GET / => generated 1263 bytes in 90 msecs (HTTP/1.1 200) 2 headers in 81 bytes (1 switches on core 0)
[pid: 8393|app: 0|req: 2/2] 192.168.0.245 () {42 vars in 740 bytes} [Tue Dec 21 13:46:24 2021] GET /static/js/jquery.min.js => generated 89503 bytes in 7 msecs via sendfile() (HTTP/1.1 200) 7 headers in 301 bytes (0 switches on core 0)
[pid: 8393|app: 0|req: 3/3] 192.168.0.245 () {42 vars in 766 bytes} [Tue Dec 21 13:46:24 2021] GET /static/js/bootstrap/bootstrap.min.js => generated 63473 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 7 headers in 301 bytes (0 switches on core 0)
[pid: 8394|app: 0|req: 1/4] 192.168.0.245 () {42 vars in 770 bytes} [Tue Dec 21 13:46:24 2021] GET /static/css/bootstrap/bootstrap.min.css => generated 161415 bytes in 27 msecs via sendfile() (HTTP/1.1 200) 7 headers in 289 bytes (0 switches on core 0)
[pid: 8387|app: 0|req: 1/6] 192.168.0.245 () {42 vars in 732 bytes} [Tue Dec 21 13:46:24 2021] GET /static/img/logo.png => generated 75062 bytes in 19 msecs via sendfile() (HTTP/1.1 200) 7 headers in 273 bytes (1 switches on core 0)
[pid: 8392|app: 0|req: 1/6] 192.168.0.245 () {42 vars in 740 bytes} [Tue Dec 21 13:46:24 2021] GET /static/js/popper.min.js => generated 18483 bytes in 21 msecs via sendfile() (HTTP/1.1 200) 7 headers in 301 bytes (0 switches on core 0)
[pid: 8387|app: 0|req: 2/7] 192.168.0.245 () {42 vars in 857 bytes} [Tue Dec 21 13:46:29 2021] GET /login?loginId=admin&loginPw=admin => generated 218 bytes in 29 msecs (HTTP/1.1 302) 5 headers in 239 bytes (1 switches on core 0)
[pid: 8393|app: 0|req: 4/8] 192.168.0.245 () {44 vars in 884 bytes} [Tue Dec 21 13:46:29 2021] GET /index => generated 26545 bytes in 53 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
[pid: 8393|app: 0|req: 5/9] 192.168.0.245 () {44 vars in 891 bytes} [Tue Dec 21 13:46:41 2021] GET /logout => generated 208 bytes in 19 msecs (HTTP/1.1 302) 4 headers in 201 bytes (1 switches on core 0)
[pid: 8393|app: 0|req: 6/10] 192.168.0.245 () {42 vars in 797 bytes} [Tue Dec 21 13:46:41 2021] GET / => generated 1263 bytes in 4 msecs (HTTP/1.1 200) 2 headers in 81 bytes (1 switches on core 0)
*** Starting uWSGI 2.0.20 (32bit) on [Tue Dec 21 14:29:11 2021] ***
compiled with version: 8.3.0 on 06 October 2021 05:59:48
os: Linux-5.10.63-v7l+ #1459 SMP Wed Oct 6 16:41:57 BST 2021
nodename: raspberrypi
machine: armv7l
clock source: unix
pcre jit disabled
detected number of CPU cores: 4
current working directory: /home/pi/SAIFE
detected binary path: /home/pi/.local/bin/uwsgi
*** WARNING: you are running uWSGI without its master process manager ***
your processes number limit is 27721
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address /tmp/uwsgi.sock fd 3
Python version: 3.7.3 (default, Jan 22 2021, 20:04:44) [GCC 8.3.0]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x1b09d8
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 257632 bytes (251 KB) for 4 cores
*** Operational MODE: preforking ***
WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x1b09d8 pid: 9347 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI worker 1 (pid: 9347, cores: 1)
spawned uWSGI worker 2 (pid: 9352, cores: 1)
spawned uWSGI worker 3 (pid: 9353, cores: 1)
spawned uWSGI worker 4 (pid: 9354, cores: 1)
*** Starting uWSGI 2.0.20 (32bit) on [Tue Dec 21 14:29:14 2021] ***
compiled with version: 8.3.0 on 06 October 2021 05:59:48
os: Linux-5.10.63-v7l+ #1459 SMP Wed Oct 6 16:41:57 BST 2021
nodename: raspberrypi
machine: armv7l
clock source: unix
pcre jit disabled
detected number of CPU cores: 4
current working directory: /home/pi/SAIFE
detected binary path: /home/pi/.local/bin/uwsgi
*** WARNING: you are running uWSGI without its master process manager ***
your processes number limit is 27721
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address /tmp/uwsgi.sock fd 3
Python version: 3.7.3 (default, Jan 22 2021, 20:04:44) [GCC 8.3.0]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x12869d8
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 257632 bytes (251 KB) for 4 cores
*** Operational MODE: preforking ***
WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x12869d8 pid: 9357 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI worker 1 (pid: 9357, cores: 1)
spawned uWSGI worker 2 (pid: 9360, cores: 1)
spawned uWSGI worker 3 (pid: 9361, cores: 1)
spawned uWSGI worker 4 (pid: 9362, cores: 1)
[pid: 9362|app: 0|req: 1/1] 192.168.0.245 () {42 vars in 774 bytes} [Tue Dec 21 14:29:23 2021] GET / => generated 1409 bytes in 88 msecs (HTTP/1.1 200) 2 headers in 81 bytes (1 switches on core 0)
[pid: 9362|app: 0|req: 2/2] 192.168.0.245 () {42 vars in 857 bytes} [Tue Dec 21 14:29:29 2021] GET /login?loginId=admin&loginPw=admin => generated 218 bytes in 24 msecs (HTTP/1.1 302) 5 headers in 239 bytes (1 switches on core 0)
[pid: 9362|app: 0|req: 3/3] 192.168.0.245 () {44 vars in 884 bytes} [Tue Dec 21 14:29:29 2021] GET /index => generated 26545 bytes in 50 msecs (HTTP/1.1 200) 2 headers in 82 bytes (1 switches on core 0)
*** Starting uWSGI 2.0.20 (32bit) on [Tue Dec 21 14:30:36 2021] ***
compiled with version: 8.3.0 on 06 October 2021 05:59:48
os: Linux-5.10.63-v7l+ #1459 SMP Wed Oct 6 16:41:57 BST 2021
nodename: raspberrypi
machine: armv7l
clock source: unix
pcre jit disabled
detected number of CPU cores: 4
current working directory: /home/pi/SAIFE
detected binary path: /home/pi/.local/bin/uwsgi
*** WARNING: you are running uWSGI without its master process manager ***
your processes number limit is 27721
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address /tmp/uwsgi.sock fd 3
Python version: 3.7.3 (default, Jan 22 2021, 20:04:44) [GCC 8.3.0]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x3109d8
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 257632 bytes (251 KB) for 4 cores
*** Operational MODE: preforking ***
*** Starting uWSGI 2.0.20 (32bit) on [Tue Dec 21 14:30:37 2021] ***
compiled with version: 8.3.0 on 06 October 2021 05:59:48
os: Linux-5.10.63-v7l+ #1459 SMP Wed Oct 6 16:41:57 BST 2021
nodename: raspberrypi
machine: armv7l
clock source: unix
pcre jit disabled
detected number of CPU cores: 4
current working directory: /home/pi/SAIFE
detected binary path: /home/pi/.local/bin/uwsgi
*** WARNING: you are running uWSGI without its master process manager ***
your processes number limit is 27721
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address /tmp/uwsgi.sock fd 3
Python version: 3.7.3 (default, Jan 22 2021, 20:04:44) [GCC 8.3.0]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x1a99d8
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 257632 bytes (251 KB) for 4 cores
*** Operational MODE: preforking ***
WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x3109d8 pid: 9428 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI worker 1 (pid: 9428, cores: 1)
spawned uWSGI worker 2 (pid: 9436, cores: 1)
spawned uWSGI worker 3 (pid: 9437, cores: 1)
spawned uWSGI worker 4 (pid: 9438, cores: 1)
WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0x1a99d8 pid: 9435 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI worker 1 (pid: 9435, cores: 1)
spawned uWSGI worker 2 (pid: 9441, cores: 1)
spawned uWSGI worker 3 (pid: 9442, cores: 1)
spawned uWSGI worker 4 (pid: 9443, cores: 1)
[pid: 9435|app: 0|req: 1/1] 192.168.0.245 () {42 vars in 832 bytes} [Tue Dec 21 14:30:45 2021] GET / => generated 629 bytes in 95 msecs (HTTP/1.1 200) 3 headers in 94 bytes (2 switches on core 0)
[pid: 9442|app: 0|req: 1/2] 192.168.0.245 () {44 vars in 886 bytes} [Tue Dec 21 14:30:47 2021] GET /logout => generated 208 bytes in 57 msecs (HTTP/1.1 302) 4 headers in 201 bytes (1 switches on core 0)
[pid: 9441|app: 0|req: 1/3] 192.168.0.245 () {42 vars in 792 bytes} [Tue Dec 21 14:30:47 2021] GET / => generated 1423 bytes in 66 msecs (HTTP/1.1 200) 2 headers in 81 bytes (1 switches on core 0)
[pid: 9442|app: 0|req: 2/4] 192.168.0.245 () {42 vars in 857 bytes} [Tue Dec 21 14:30:52 2021] GET /login?loginId=admin&loginPw=admin => generated 218 bytes in 10 msecs (HTTP/1.1 302) 5 headers in 239 bytes (1 switches on core 0)