-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsitemap.xml
1510 lines (1510 loc) · 112 KB
/
sitemap.xml
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
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>https://ealebed.github.io/tags/airflow/</loc>
<lastmod>2021-08-26T11:07:20+03:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/curl/</loc>
<lastmod>2021-08-26T11:07:20+03:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/docker/</loc>
<lastmod>2021-08-26T11:07:20+03:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2021/healthcheck-for-apache-airflow-in-k8s-cluster/</loc>
<lastmod>2021-08-26T11:07:20+03:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/jq/</loc>
<lastmod>2021-08-26T11:07:20+03:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/kubernetes/</loc>
<lastmod>2021-08-26T11:07:20+03:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/</loc>
<lastmod>2021-08-26T11:07:20+03:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/</loc>
<lastmod>2021-08-26T11:07:20+03:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/</loc>
<lastmod>2021-08-26T11:07:20+03:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/python/</loc>
<lastmod>2021-07-12T10:26:22+03:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/slack/</loc>
<lastmod>2021-07-12T10:26:22+03:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2021/apache-airflow-and-slack-integration/</loc>
<lastmod>2021-07-12T10:26:22+03:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2021/apache-airflow-%D0%B7%D0%B0%D0%BF%D1%83%D1%81%D0%BA-kubernetespodoperator-%D1%87%D0%B5%D1%80%D0%B5%D0%B7-api/</loc>
<lastmod>2021-05-22T06:33:56+03:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2021/%D0%B1%D0%B5%D0%B7%D0%BE%D0%BF%D0%B0%D1%81%D0%BD%D0%B0%D1%8F-%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D0%B0-%D1%81-%D1%81%D0%B5%D0%BA%D1%80%D0%B5%D1%82%D0%B0%D0%BC%D0%B8-%D0%BF%D1%80%D0%B8-%D1%81%D0%B1%D0%BE%D1%80%D0%BA%D0%B5-docker-%D0%BE%D0%B1%D1%80%D0%B0%D0%B7%D0%BE%D0%B2/</loc>
<lastmod>2021-04-30T07:14:15+03:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/flyway/</loc>
<lastmod>2021-02-05T10:51:00+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/gradle/</loc>
<lastmod>2021-02-05T10:51:00+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/postgres/</loc>
<lastmod>2021-02-05T10:51:00+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/testcontainers/</loc>
<lastmod>2021-02-05T10:51:00+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2021/%D0%B2%D0%B0%D0%BB%D0%B8%D0%B4%D0%B0%D1%86%D0%B8%D1%8F-%D0%BC%D0%B8%D0%B3%D1%80%D0%B0%D1%86%D0%B8%D0%B9-flyway-%D1%81-%D0%BF%D0%BE%D0%BC%D0%BE%D1%89%D1%8C%D1%8E-testcontainers/</loc>
<lastmod>2021-02-05T10:51:00+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/k8s/</loc>
<lastmod>2020-12-08T08:37:14+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/redis/</loc>
<lastmod>2020-12-08T08:37:14+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2020/%D0%B8%D1%81%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5-poststart-%D1%85%D1%83%D0%BA%D0%B0-%D0%BF%D1%80%D0%B8-%D0%B7%D0%B0%D0%BF%D1%83%D1%81%D0%BA%D0%B5-%D0%BF%D0%BE%D0%B4%D0%B0-%D0%B2-kubernetes/</loc>
<lastmod>2020-12-08T08:37:14+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/kubernetes-controller/</loc>
<lastmod>2020-12-01T16:22:56+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2020/%D0%B2%D1%81%D1%82%D0%B0%D0%B2%D0%BA%D0%B0-%D0%B4%D0%B0%D0%BD%D0%BD%D1%8B%D1%85-%D0%B2-redis-%D0%BD%D0%B0-%D1%81%D1%82%D0%B0%D1%80%D1%82%D0%B5-%D0%BA%D0%BE%D0%BD%D1%82%D0%B5%D0%B9%D0%BD%D0%B5%D1%80%D0%B0/</loc>
<lastmod>2020-12-01T16:22:56+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/elasticsearch/</loc>
<lastmod>2020-04-09T07:49:37+03:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/logs/</loc>
<lastmod>2020-04-09T07:49:37+03:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2020/%D0%BE%D1%82%D0%BF%D1%80%D0%B0%D0%B2%D0%BA%D0%B0-%D0%BB%D0%BE%D0%B3%D0%BE%D0%B2-apache-airflow-%D0%B2-elasticsearch/</loc>
<lastmod>2020-04-09T07:49:37+03:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/jenkins/</loc>
<lastmod>2020-03-27T09:28:09+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2020/%D0%B2%D0%B0%D0%BB%D0%B8%D0%B4%D0%B0%D1%86%D0%B8%D1%8F-%D0%BC%D0%B8%D0%B3%D1%80%D0%B0%D1%86%D0%B8%D0%B9-flyway-%D0%B1%D0%B5%D0%B7-%D1%81%D0%BC%D1%81-%D0%B8-%D1%80%D0%B5%D0%B3%D0%B8%D1%81%D1%82%D1%80%D0%B0%D1%86%D0%B8%D0%B8/</loc>
<lastmod>2020-03-27T09:28:09+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/fluentbit/</loc>
<lastmod>2020-03-15T10:18:43+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2020/%D1%81%D0%B1%D0%BE%D1%80-%D0%B8-%D0%B0%D0%BD%D0%B0%D0%BB%D0%B8%D0%B7-%D0%BB%D0%BE%D0%B3%D0%BE%D0%B2-kubernetes-%D0%BA%D0%BB%D0%B0%D1%81%D1%82%D0%B5%D1%80%D0%B0-%D1%81-%D0%BF%D0%BE%D0%BC%D0%BE%D1%89%D1%8C%D1%8E-efk/</loc>
<lastmod>2020-03-15T10:18:43+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2020/flyway-version-control-for-db/</loc>
<lastmod>2020-02-21T07:57:33+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/ci/</loc>
<lastmod>2020-02-09T10:34:59+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2020/gradle-checkstyle-on-changed-files-only/</loc>
<lastmod>2020-02-09T10:34:59+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2020/%D1%80%D0%B0%D0%B7%D0%B2%D0%B5%D1%80%D1%82%D1%8B%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5-apache-airflow-%D0%B2-kubernetes/</loc>
<lastmod>2020-01-28T07:41:43+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2019/%D0%BF%D1%80%D0%B8%D0%BE%D1%80%D0%B8%D1%82%D0%B5%D1%82%D0%BD%D0%BE%D1%81%D1%82%D1%8C-%D0%BF%D0%BE%D0%B4%D0%BE%D0%B2-%D0%B2-kubernetes/</loc>
<lastmod>2019-09-19T10:53:04+03:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2019/%D1%80%D0%B5%D1%81%D1%83%D1%80%D1%81%D1%8B-%D0%B2-kubernetes-%D1%87%D0%B0%D1%81%D1%82%D1%8C-2-cpu/</loc>
<lastmod>2019-07-25T10:06:18+03:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2019/%D1%80%D0%B5%D1%81%D1%83%D1%80%D1%81%D1%8B-%D0%B2-kubernetes-%D1%87%D0%B0%D1%81%D1%82%D1%8C-1-memory/</loc>
<lastmod>2019-07-15T10:23:16+03:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2019/%D0%B7%D0%BD%D0%B0%D0%BA%D0%BE%D0%BC%D1%81%D1%82%D0%B2%D0%BE-%D1%81-kubernetes-%D1%87%D0%B0%D1%81%D1%82%D1%8C-19-horizontalpodautoscaler/</loc>
<lastmod>2019-06-12T08:08:15+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/cd/</loc>
<lastmod>2019-01-24T11:59:25+03:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2019/deploy-to-k8s-with-spinnaker-%D1%87%D0%B0%D1%81%D1%82%D1%8C-1-%D1%83%D1%81%D1%82%D0%B0%D0%BD%D0%BE%D0%B2%D0%BA%D0%B0/</loc>
<lastmod>2019-01-24T11:59:25+03:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/spinnaker/</loc>
<lastmod>2019-01-24T11:59:25+03:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2019/gradle-checkstyle-plugin/</loc>
<lastmod>2019-01-08T06:50:42+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2019/%D1%81%D0%B1%D0%BE%D1%80%D0%BA%D0%B0-%D0%BF%D1%80%D0%BE%D0%B5%D0%BA%D1%82%D0%BE%D0%B2-%D1%81-%D0%BF%D0%BE%D0%BC%D0%BE%D1%89%D1%8C%D1%8E-gradle/</loc>
<lastmod>2019-01-03T06:19:13+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/grpc/</loc>
<lastmod>2018-12-29T11:10:09+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/grpc-rest-gateway/</loc>
<lastmod>2018-12-29T11:10:09+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/tcpdump/</loc>
<lastmod>2018-10-18T06:02:45+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%BF%D1%80%D0%B0%D0%BA%D1%82%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%B8%D0%B5-%D0%BF%D1%80%D0%B8%D0%BC%D0%B5%D1%80%D1%8B-%D0%B8%D1%81%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D1%8F-tcpdump/</loc>
<lastmod>2018-10-18T06:02:45+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/centos/</loc>
<lastmod>2018-10-11T07:03:20+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/debian/</loc>
<lastmod>2018-10-11T07:03:20+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/tar/</loc>
<lastmod>2018-10-11T07:03:20+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/ubuntu/</loc>
<lastmod>2018-10-11T07:03:20+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%BF%D1%80%D0%B0%D0%BA%D1%82%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%B8%D0%B5-%D0%BF%D1%80%D0%B8%D0%BC%D0%B5%D1%80%D1%8B-%D0%B8%D1%81%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D1%8F-tar/</loc>
<lastmod>2018-10-11T07:03:20+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/netstat/</loc>
<lastmod>2018-10-08T06:00:53+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%BF%D1%80%D0%B0%D0%BA%D1%82%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%B8%D0%B5-%D0%BF%D1%80%D0%B8%D0%BC%D0%B5%D1%80%D1%8B-%D0%B8%D1%81%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D1%8F-netstat/</loc>
<lastmod>2018-10-08T06:00:53+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/fuser/</loc>
<lastmod>2018-10-04T06:09:25+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/lsof/</loc>
<lastmod>2018-10-04T06:09:25+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/tips/</loc>
<lastmod>2018-10-04T06:09:25+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%BF%D1%80%D0%BE%D0%B2%D0%B5%D1%80%D0%BA%D0%B0-%D0%B7%D0%B0%D0%BD%D1%8F%D1%82%D0%BE%D1%81%D1%82%D0%B8-%D0%BF%D0%BE%D1%80%D1%82%D0%B0-%D1%81%D0%B5%D1%80%D0%B2%D0%B8%D1%81%D0%BE%D0%BC-%D0%B2-linux/</loc>
<lastmod>2018-10-04T06:09:25+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%B7%D0%BD%D0%B0%D0%BA%D0%BE%D0%BC%D1%81%D1%82%D0%B2%D0%BE-%D1%81-kubernetes-%D1%87%D0%B0%D1%81%D1%82%D1%8C-18-podpresets/</loc>
<lastmod>2018-10-01T06:01:02+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/6-%D1%81%D0%BF%D0%BE%D1%81%D0%BE%D0%B1%D0%BE%D0%B2-%D0%BE%D1%87%D0%B8%D1%81%D1%82%D0%BA%D0%B8-%D1%82%D0%B5%D1%80%D0%BC%D0%B8%D0%BD%D0%B0%D0%BB%D0%B0-%D0%B2-linux/</loc>
<lastmod>2018-09-27T07:01:43+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%B7%D0%BD%D0%B0%D0%BA%D0%BE%D0%BC%D1%81%D1%82%D0%B2%D0%BE-%D1%81-kubernetes-%D1%87%D0%B0%D1%81%D1%82%D1%8C-17-%D0%B2%D0%B2%D0%B5%D0%B4%D0%B5%D0%BD%D0%B8%D0%B5-%D0%B2-yaml/</loc>
<lastmod>2018-09-24T07:03:44+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%B2%D1%8B%D0%B2%D0%BE%D0%B4%D0%B8%D0%BC-%D1%81%D0%BF%D0%B8%D1%81%D0%BE%D0%BA-%D1%83%D1%81%D1%82%D0%B0%D0%BD%D0%BE%D0%B2%D0%BB%D0%B5%D0%BD%D0%BD%D1%8B%D1%85-%D0%BF%D0%B0%D0%BA%D0%B5%D1%82%D0%BE%D0%B2-%D0%B2-linux-%D0%BF%D0%BE-%D0%B4%D0%B0%D1%82%D0%B5/</loc>
<lastmod>2018-09-20T07:02:13+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%B7%D0%BD%D0%B0%D0%BA%D0%BE%D0%BC%D1%81%D1%82%D0%B2%D0%BE-%D1%81-kubernetes-%D1%87%D0%B0%D1%81%D1%82%D1%8C-16-%D1%80%D0%B0%D0%B7%D0%BB%D0%B8%D1%87%D0%B8%D1%8F-%D0%B2-replication-controller-replica-set-%D0%B8-deployments/</loc>
<lastmod>2018-09-14T07:04:29+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-38-%D1%82%D0%BE%D0%BF-10-%D0%BE%D0%BF%D1%86%D0%B8%D0%B9-%D0%BA%D0%BE%D0%BC%D0%B0%D0%BD%D0%B4%D1%8B-docker-run/</loc>
<lastmod>2018-09-13T07:02:14+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/jenkins-as-a-code-%D1%87%D0%B0%D1%81%D1%82%D1%8C-4/</loc>
<lastmod>2018-09-10T07:08:19+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/scripts/</loc>
<lastmod>2018-09-10T07:08:19+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%B7%D0%BD%D0%B0%D0%BA%D0%BE%D0%BC%D1%81%D1%82%D0%B2%D0%BE-%D1%81-kubernetes-%D1%87%D0%B0%D1%81%D1%82%D1%8C-15-%D1%83%D1%81%D1%82%D0%B0%D0%BD%D0%BE%D0%B2%D0%BA%D0%B0-%D0%B8-%D0%BD%D0%B0%D1%81%D1%82%D1%80%D0%BE%D0%B9%D0%BA%D0%B0-kubectl/</loc>
<lastmod>2018-09-06T07:04:48+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/jenkins-as-a-code-%D1%87%D0%B0%D1%81%D1%82%D1%8C-3/</loc>
<lastmod>2018-09-03T07:02:21+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-37-incorrect-username-or-password-%D0%BF%D1%80%D0%B8-%D1%81%D0%BA%D0%B0%D1%87%D0%B8%D0%B2%D0%B0%D0%BD%D0%B8%D0%B8-%D0%BE%D0%B1%D1%80%D0%B0%D0%B7%D0%BE%D0%B2/</loc>
<lastmod>2018-08-30T07:07:15+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%B7%D0%BD%D0%B0%D0%BA%D0%BE%D0%BC%D1%81%D1%82%D0%B2%D0%BE-%D1%81-kubernetes-%D1%87%D0%B0%D1%81%D1%82%D1%8C-14-%D1%81%D0%B5%D0%BA%D1%80%D0%B5%D1%82%D1%8B-secrets/</loc>
<lastmod>2018-08-27T06:06:07+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-36-%D1%87%D1%82%D0%BE-%D0%BF%D1%80%D0%BE%D0%B8%D1%81%D1%85%D0%BE%D0%B4%D0%B8%D1%82-%D0%BF%D1%80%D0%B8-%D0%B7%D0%B0%D0%BF%D1%83%D1%81%D0%BA%D0%B5-docker-compose-up/</loc>
<lastmod>2018-08-23T07:01:43+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/docker-compose/</loc>
<lastmod>2018-08-23T07:01:43+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/jenkins-as-a-code-%D1%87%D0%B0%D1%81%D1%82%D1%8C-2/</loc>
<lastmod>2018-08-20T07:04:45+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-35-%D0%BF%D1%80%D0%BE%D0%B2%D0%B5%D1%80%D0%BA%D0%B0-%D0%BA%D0%BE%D0%B4%D0%B0-%D0%B7%D0%B0%D0%B2%D0%B5%D1%80%D1%88%D0%B5%D0%BD%D0%B8%D1%8F-%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D1%8B-%D0%BA%D0%BE%D0%BD%D1%82%D0%B5%D0%B9%D0%BD%D0%B5%D1%80%D0%B0/</loc>
<lastmod>2018-08-16T07:03:58+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%B7%D0%BD%D0%B0%D0%BA%D0%BE%D0%BC%D1%81%D1%82%D0%B2%D0%BE-%D1%81-kubernetes-%D1%87%D0%B0%D1%81%D1%82%D1%8C-13-%D0%BA%D0%BE%D0%BD%D1%84%D0%B8%D0%B3%D0%BC%D0%B0%D0%BF%D1%8B-configmap/</loc>
<lastmod>2018-08-13T07:03:49+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-34-%D1%80%D0%B0%D0%B7%D0%BD%D0%B8%D1%86%D0%B0-%D0%BC%D0%B5%D0%B6%D0%B4%D1%83-%D1%84%D0%BE%D1%80%D0%BC%D0%B0%D1%82%D0%B0%D0%BC%D0%B8-cmd/</loc>
<lastmod>2018-08-09T07:09:16+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/jenkins-as-a-code-%D1%87%D0%B0%D1%81%D1%82%D1%8C-1/</loc>
<lastmod>2018-08-06T07:08:20+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-33-%D0%B8%D1%81%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5-%D0%B4%D0%B2%D1%83%D1%85-dockerfile-%D0%B2-%D0%BE%D0%B4%D0%BD%D0%BE%D0%BC-compose-%D0%BF%D1%80%D0%BE%D0%B5%D0%BA%D1%82%D0%B5/</loc>
<lastmod>2018-08-02T07:08:18+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/jenkins-%D0%B8%D1%81%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5-shared-libraries/</loc>
<lastmod>2018-07-30T07:04:56+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-32-%D1%80%D0%B0%D0%B7%D0%BD%D0%B8%D1%86%D0%B0-%D0%BC%D0%B5%D0%B6%D0%B4%D1%83-create-start-%D0%B8-run/</loc>
<lastmod>2018-07-26T07:02:48+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/systemd/</loc>
<lastmod>2018-07-23T07:02:12+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%B7%D0%B0%D0%BF%D1%83%D1%81%D0%BA-docker-compose-%D1%81-%D0%BF%D0%BE%D0%BC%D0%BE%D1%89%D1%8C%D1%8E-systemd-unit/</loc>
<lastmod>2018-07-23T07:02:12+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-31-%D0%B8%D1%81%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5-build-%D0%B8-image-%D0%B2-%D0%BE%D0%B4%D0%BD%D0%BE%D0%BC-%D1%81%D0%B5%D1%80%D0%B2%D0%B8%D1%81%D0%B5-%D0%B2-docker-compose/</loc>
<lastmod>2018-07-19T07:06:51+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%B7%D0%BD%D0%B0%D0%BA%D0%BE%D0%BC%D1%81%D1%82%D0%B2%D0%BE-%D1%81-kubernetes-%D1%87%D0%B0%D1%81%D1%82%D1%8C-12-%D0%B0%D0%BD%D0%BD%D0%BE%D1%82%D0%B0%D1%86%D0%B8%D0%B8/</loc>
<lastmod>2018-07-16T07:02:34+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/nginx/</loc>
<lastmod>2018-07-12T07:08:36+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%BA%D0%B0%D0%BA-%D0%B8%D1%81%D0%BF%D1%80%D0%B0%D0%B2%D0%B8%D1%82%D1%8C-%D0%BE%D1%88%D0%B8%D0%B1%D0%BA%D1%83-getpwnam-nginx-failed/</loc>
<lastmod>2018-07-12T07:08:36+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%B7%D0%BD%D0%B0%D0%BA%D0%BE%D0%BC%D1%81%D1%82%D0%B2%D0%BE-%D1%81-kubernetes-%D1%87%D0%B0%D1%81%D1%82%D1%8C-11-%D1%81%D0%B5%D1%80%D0%B2%D0%B8%D1%81%D1%8B-services/</loc>
<lastmod>2018-07-09T07:06:58+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-30-%D0%BC%D0%BE%D0%BD%D1%82%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5-ssh-%D0%BA%D0%BB%D1%8E%D1%87%D0%B5%D0%B9-%D0%B2-docker-%D0%BA%D0%BE%D0%BD%D1%82%D0%B5%D0%B9%D0%BD%D0%B5%D1%80/</loc>
<lastmod>2018-07-05T07:09:29+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%B7%D0%BD%D0%B0%D0%BA%D0%BE%D0%BC%D1%81%D1%82%D0%B2%D0%BE-%D1%81-kubernetes-%D1%87%D0%B0%D1%81%D1%82%D1%8C-10-%D0%BD%D0%B5%D0%B9%D0%BC%D1%81%D0%BF%D0%B5%D0%B9%D1%81%D1%8B-namespaces/</loc>
<lastmod>2018-07-02T07:02:27+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%B7%D0%BD%D0%B0%D0%BA%D0%BE%D0%BC%D1%81%D1%82%D0%B2%D0%BE-%D1%81-kubernetes-%D1%87%D0%B0%D1%81%D1%82%D1%8C-9-%D0%BC%D0%B5%D1%82%D0%BA%D0%B8-%D0%B8-%D1%81%D0%B5%D0%BB%D0%B5%D0%BA%D1%82%D0%BE%D1%80%D1%8B/</loc>
<lastmod>2018-06-25T07:07:18+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-29-%D1%81%D0%BE%D0%B7%D0%B4%D0%B0%D0%BD%D0%B8%D0%B5-read-only-%D0%BA%D0%BE%D0%BD%D1%82%D0%B5%D0%B9%D0%BD%D0%B5%D1%80%D0%BE%D0%B2/</loc>
<lastmod>2018-06-21T07:00:59+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%B7%D0%BD%D0%B0%D0%BA%D0%BE%D0%BC%D1%81%D1%82%D0%B2%D0%BE-%D1%81-kubernetes-%D1%87%D0%B0%D1%81%D1%82%D1%8C-8-%D0%BF%D0%B5%D1%80%D0%B5%D0%BC%D0%B5%D0%BD%D0%BD%D1%8B%D0%B5-%D0%BE%D0%BA%D1%80%D1%83%D0%B6%D0%B5%D0%BD%D0%B8%D1%8F/</loc>
<lastmod>2018-06-18T07:02:29+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-28-%D0%BA%D0%B0%D0%BA-%D0%B8%D1%81%D0%BF%D1%80%D0%B0%D0%B2%D0%B8%D1%82%D1%8C-%D0%BE%D1%88%D0%B8%D0%B1%D0%BA%D1%83-connection-reset-by-peer/</loc>
<lastmod>2018-06-14T07:04:41+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%B7%D0%BD%D0%B0%D0%BA%D0%BE%D0%BC%D1%81%D1%82%D0%B2%D0%BE-%D1%81-kubernetes-%D1%87%D0%B0%D1%81%D1%82%D1%8C-7-images/</loc>
<lastmod>2018-06-11T07:05:55+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/docker-registry/</loc>
<lastmod>2018-06-07T07:06:31+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-27-%D1%80%D0%B0%D0%B7%D0%BD%D0%B8%D1%86%D0%B0-%D0%BC%D0%B5%D0%B6%D0%B4%D1%83-%D1%80%D0%B5%D0%B5%D1%81%D1%82%D1%80%D0%BE%D0%BC-%D1%80%D0%B5%D0%BF%D0%BE%D0%B7%D0%B8%D1%82%D0%BE%D1%80%D0%B8%D0%B5%D0%BC-%D0%B8-%D0%BE%D0%B1%D1%80%D0%B0%D0%B7%D0%BE%D0%BC/</loc>
<lastmod>2018-06-07T07:06:31+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%B7%D0%BD%D0%B0%D0%BA%D0%BE%D0%BC%D1%81%D1%82%D0%B2%D0%BE-%D1%81-kubernetes-%D1%87%D0%B0%D1%81%D1%82%D1%8C-6-garbage-collector/</loc>
<lastmod>2018-06-04T07:16:52+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-26-%D0%B8%D1%81%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5-%D0%BA%D0%BE%D1%80%D0%BE%D1%82%D0%BA%D0%B8%D1%85-id/</loc>
<lastmod>2018-05-31T07:25:24+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/deployments/</loc>
<lastmod>2018-05-28T07:33:21+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%B7%D0%BD%D0%B0%D0%BA%D0%BE%D0%BC%D1%81%D1%82%D0%B2%D0%BE-%D1%81-kubernetes-%D1%87%D0%B0%D1%81%D1%82%D1%8C-5-deployments/</loc>
<lastmod>2018-05-28T07:33:21+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-25-%D0%BA%D0%B0%D0%BA%D1%83%D1%8E-api-%D0%B2%D0%B5%D1%80%D1%81%D0%B8%D1%8E-docker-compose-%D0%B8%D1%81%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D1%82%D1%8C/</loc>
<lastmod>2018-05-24T07:08:48+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/replicaset/</loc>
<lastmod>2018-05-21T07:02:15+03:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%B7%D0%BD%D0%B0%D0%BA%D0%BE%D0%BC%D1%81%D1%82%D0%B2%D0%BE-%D1%81-kubernetes-%D1%87%D0%B0%D1%81%D1%82%D1%8C-4-replicaset/</loc>
<lastmod>2018-05-21T07:02:15+03:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-24-%D0%B7%D0%B0%D0%BF%D1%83%D1%81%D0%BA-insecure-docker-registry/</loc>
<lastmod>2018-05-17T07:56:35+03:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/pod/</loc>
<lastmod>2018-05-14T06:17:12+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%B7%D0%BD%D0%B0%D0%BA%D0%BE%D0%BC%D1%81%D1%82%D0%B2%D0%BE-%D1%81-kubernetes-%D1%87%D0%B0%D1%81%D1%82%D1%8C-3-pods/</loc>
<lastmod>2018-05-14T06:17:12+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-23-%D0%B8%D0%BC%D0%BF%D0%BE%D1%80%D1%82-sql-%D1%84%D0%B0%D0%B9%D0%BB%D0%B0-%D1%81-docker-compose/</loc>
<lastmod>2018-05-10T06:30:16+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/mysql/</loc>
<lastmod>2018-05-10T06:30:16+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/psql/</loc>
<lastmod>2018-05-10T06:30:16+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%B7%D0%BD%D0%B0%D0%BA%D0%BE%D0%BC%D1%81%D1%82%D0%B2%D0%BE-%D1%81-kubernetes-%D1%87%D0%B0%D1%81%D1%82%D1%8C-2-%D1%82%D0%B5%D1%80%D0%BC%D0%B8%D0%BD%D0%BE%D0%BB%D0%BE%D0%B3%D0%B8%D1%8F/</loc>
<lastmod>2018-04-30T07:32:11+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-22-%D0%BF%D0%BE%D0%BB%D1%83%D1%87%D0%B0%D0%B5%D0%BC-%D1%81%D0%BF%D0%B8%D1%81%D0%BE%D0%BA-%D0%B8%D0%B7%D0%BC%D0%B5%D0%BD%D0%B5%D0%BD%D0%B8%D0%B9-%D0%B2-%D0%BA%D0%BE%D0%BD%D1%82%D0%B5%D0%B9%D0%BD%D0%B5%D1%80%D0%B5/</loc>
<lastmod>2018-04-26T07:59:48+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/flannel/</loc>
<lastmod>2018-04-23T07:35:44+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%B7%D0%BD%D0%B0%D0%BA%D0%BE%D0%BC%D1%81%D1%82%D0%B2%D0%BE-%D1%81-kubernetes-%D1%87%D0%B0%D1%81%D1%82%D1%8C-1-%D1%83%D1%81%D1%82%D0%B0%D0%BD%D0%BE%D0%B2%D0%BA%D0%B0/</loc>
<lastmod>2018-04-23T07:35:44+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%BA%D0%B0%D0%BA-%D0%B2%D0%BE%D1%81%D1%81%D1%82%D0%B0%D0%BD%D0%BE%D0%B2%D0%B8%D1%82%D1%8C-%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D1%82%D0%B5%D0%BB%D1%8F-root-%D0%B2-mysql/</loc>
<lastmod>2018-04-19T06:25:05+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%B7%D0%BD%D0%B0%D0%BA%D0%BE%D0%BC%D1%81%D1%82%D0%B2%D0%BE-%D1%81-kubernetes-%D1%87%D0%B0%D1%81%D1%82%D1%8C-0-%D1%87%D1%82%D0%BE-%D1%8D%D1%82%D0%BE/</loc>
<lastmod>2018-04-15T14:17:50+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-21-%D0%B8%D1%81%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5-%D0%BF%D0%B5%D1%80%D0%B5%D0%BC%D0%B5%D0%BD%D0%BD%D1%8B%D1%85-%D0%BE%D0%BA%D1%80%D1%83%D0%B6%D0%B5%D0%BD%D0%B8%D1%8F/</loc>
<lastmod>2018-04-12T08:07:05+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-20-%D0%B8%D1%81%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D1%83%D0%B9%D1%82%D0%B5-workdir/</loc>
<lastmod>2018-04-05T08:02:05+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%BF%D1%80%D0%B8%D0%BC%D0%B5%D0%BD%D0%B5%D0%BD%D0%B8%D0%B5-dry-%D0%BA-docker-compose.yml/</loc>
<lastmod>2018-04-02T07:50:38+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-19-docker-compose-stop-%D0%B8%D0%BB%D0%B8-down/</loc>
<lastmod>2018-03-29T07:28:35+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/minikube/</loc>
<lastmod>2018-03-26T08:15:43+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D1%83%D1%81%D1%82%D0%B0%D0%BD%D0%BE%D0%B2%D0%BA%D0%B0-minikube/</loc>
<lastmod>2018-03-26T08:15:43+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-18-%D0%B8%D1%81%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5-%D0%B4%D0%B8%D1%81%D0%BA%D0%B0/</loc>
<lastmod>2018-03-22T08:15:03+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/letsencrypt-wildcard-%D1%81%D0%B5%D1%80%D1%82%D0%B8%D1%84%D0%B8%D0%BA%D0%B0%D1%82%D1%8B-%D1%82%D0%B5%D0%BF%D0%B5%D1%80%D1%8C-%D0%B4%D0%BE%D1%81%D1%82%D1%83%D0%BF%D0%BD%D1%8B/</loc>
<lastmod>2018-03-19T08:13:41+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/ssl/</loc>
<lastmod>2018-03-19T08:13:41+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-17-%D0%BA%D0%BE%D0%BC%D0%B0%D0%BD%D0%B4%D0%B0-docker-compose-config/</loc>
<lastmod>2018-03-15T08:26:57+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/sphinxsearch/</loc>
<lastmod>2018-03-12T08:50:13+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/sphinxsearch-%D0%B2-docker-%D0%BA%D0%BE%D0%BD%D1%82%D0%B5%D0%B9%D0%BD%D0%B5%D1%80%D0%B5/</loc>
<lastmod>2018-03-12T08:50:13+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/dns/</loc>
<lastmod>2018-03-08T09:05:04+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-16-%D0%B8%D1%81%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5-%D1%84%D0%BB%D0%B0%D0%B3%D0%B0--add-host/</loc>
<lastmod>2018-03-08T09:05:04+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-15-%D0%B8%D1%81%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5-%D0%BA%D0%BE%D0%BD%D1%82%D0%B5%D0%B9%D0%BD%D0%B5%D1%80%D0%BE%D0%B2-%D0%B4%D0%BB%D1%8F-%D0%B4%D0%BB%D0%B8%D1%82%D0%B5%D0%BB%D1%8C%D0%BD%D1%8B%D1%85-%D0%B8-%D1%80%D0%B0%D0%B7%D0%BE%D0%B2%D1%8B%D1%85-%D0%B7%D0%B0%D0%B4%D0%B0%D1%87/</loc>
<lastmod>2018-03-05T07:35:57+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/docker-%D0%BF%D0%B5%D1%80%D0%B5%D0%BD%D0%B0%D0%BF%D1%80%D0%B0%D0%B2%D0%BB%D0%B5%D0%BD%D0%B8%D0%B5-%D0%BB%D0%BE%D0%B3%D0%BE%D0%B2-%D0%B2-graylog2/</loc>
<lastmod>2018-03-01T08:53:38+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/graylog2/</loc>
<lastmod>2018-03-01T08:53:38+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/cron/</loc>
<lastmod>2018-02-26T08:57:38+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/cron-%D0%B2-docker-%D0%BA%D0%BE%D0%BD%D1%82%D0%B5%D0%B9%D0%BD%D0%B5%D1%80%D0%B5/</loc>
<lastmod>2018-02-26T08:57:38+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-14-%D0%BA%D0%B0%D0%BA-%D0%B7%D0%B0%D0%BF%D1%83%D1%81%D0%BA%D0%B0%D1%82%D1%8C-%D0%B7%D0%B0%D0%B4%D0%B0%D1%87%D0%B8-%D0%BF%D0%BE-%D0%BA%D1%80%D0%BE%D0%BD%D1%83-%D0%B2-%D0%BA%D0%BE%D0%BD%D1%82%D0%B5%D0%B9%D0%BD%D0%B5%D1%80%D0%B5-%D0%B8%D0%BB%D0%B8-%D0%BD%D0%B0-%D1%85%D0%BE%D1%81%D1%82-%D0%BC%D0%B0%D1%88%D0%B8%D0%BD%D0%B5/</loc>
<lastmod>2018-02-22T08:56:32+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/openssl/</loc>
<lastmod>2018-02-19T08:58:04+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%BF%D0%B5%D1%80%D0%B5%D1%81%D0%B1%D0%BE%D1%80%D0%BA%D0%B0-nginx-%D1%81-%D0%BF%D0%BE%D0%B4%D0%B4%D0%B5%D1%80%D0%B6%D0%BA%D0%BE%D0%B9-tls-v1.3/</loc>
<lastmod>2018-02-19T08:58:04+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%B8%D1%81%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5-mozjpeg-%D0%B2-docker-%D0%BA%D0%BE%D0%BD%D1%82%D0%B5%D0%B9%D0%BD%D0%B5%D1%80%D0%B5/</loc>
<lastmod>2018-02-15T08:55:32+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/monitoring/</loc>
<lastmod>2018-02-12T08:55:05+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/sysdig/</loc>
<lastmod>2018-02-12T08:55:05+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%BF%D1%80%D0%B0%D0%BA%D1%82%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%B8%D0%B5-%D0%BF%D1%80%D0%B8%D0%BC%D0%B5%D1%80%D1%8B-%D0%B8%D1%81%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D1%8F-sysdig/</loc>
<lastmod>2018-02-12T08:55:05+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/wget/</loc>
<lastmod>2018-02-08T08:27:59+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%BF%D1%80%D0%B0%D0%BA%D1%82%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%B8%D0%B5-%D0%BF%D1%80%D0%B8%D0%BC%D0%B5%D1%80%D1%8B-%D0%B8%D1%81%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D1%8F-wget/</loc>
<lastmod>2018-02-08T08:27:59+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/redis-%D0%B2-docker-%D0%BA%D0%BE%D0%BD%D1%82%D0%B5%D0%B9%D0%BD%D0%B5%D1%80%D0%B5-%D0%BD%D0%B5-%D1%81%D0%BE%D1%85%D1%80%D0%B0%D0%BD%D1%8F%D0%B5%D1%82-%D0%B4%D0%B0%D0%BD%D0%BD%D1%8B%D0%B5/</loc>
<lastmod>2018-02-05T08:57:22+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/ulimit/</loc>
<lastmod>2018-02-01T08:56:10+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%BA%D0%B0%D0%BA-%D0%B8%D0%B7%D0%BC%D0%B5%D0%BD%D0%B8%D1%82%D1%8C-%D0%B7%D0%BD%D0%B0%D1%87%D0%B5%D0%BD%D0%B8%D0%B5-open-file-limit-3-%D0%B2%D0%B0%D1%80%D0%B8%D0%B0%D0%BD%D1%82%D0%B0/</loc>
<lastmod>2018-02-01T08:56:10+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/activation/</loc>
<lastmod>2018-01-29T09:22:32+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/activator/</loc>
<lastmod>2018-01-29T09:22:32+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/crack/</loc>
<lastmod>2018-01-29T09:22:32+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/idea/</loc>
<lastmod>2018-01-29T09:22:32+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/ilsap/</loc>
<lastmod>2018-01-29T09:22:32+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/intellij/</loc>
<lastmod>2018-01-29T09:22:32+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/jetbrains/</loc>
<lastmod>2018-01-29T09:22:32+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/jetbrains-products-license-server-in-docker/</loc>
<lastmod>2018-01-29T09:22:32+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/license/</loc>
<lastmod>2018-01-29T09:22:32+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/license-server/</loc>
<lastmod>2018-01-29T09:22:32+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/ngrok/</loc>
<lastmod>2018-01-29T09:22:32+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-13-%D0%BA%D0%B0%D0%BA%D0%BE%D0%B9-%D1%84%D0%BB%D0%B0%D0%B3-%D0%BB%D1%83%D1%87%D1%88%D0%B5-%D0%B8%D1%81%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D1%82%D1%8C-volume-%D0%B8%D0%BB%D0%B8-mount/</loc>
<lastmod>2018-01-25T09:36:51+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/nixstats/</loc>
<lastmod>2018-01-22T08:54:37+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%BC%D0%BE%D0%BD%D0%B8%D1%82%D0%BE%D1%80%D0%B8%D0%BD%D0%B3-redis-%D1%81-%D0%BF%D0%BE%D0%BC%D0%BE%D1%89%D1%8C%D1%8E-nixstats/</loc>
<lastmod>2018-01-22T08:54:37+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/%D0%BE%D0%BF%D1%82%D0%B8%D0%BC%D0%B8%D0%B7%D0%B0%D1%86%D0%B8%D1%8F-%D0%B8-%D1%81%D0%B6%D0%B0%D1%82%D0%B8%D0%B5-%D0%B8%D0%B7%D0%BE%D0%B1%D1%80%D0%B0%D0%B6%D0%B5%D0%BD%D0%B8%D0%B9-%D0%B8%D0%B7-%D0%BA%D0%BE%D0%BD%D1%81%D0%BE%D0%BB%D0%B8/</loc>
<lastmod>2018-01-18T10:00:06+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/redis-inside-%D0%B8%D0%BB%D0%B8-%D1%87%D1%82%D0%BE-%D1%85%D1%80%D0%B0%D0%BD%D0%B8%D1%82%D1%81%D1%8F-%D0%B2-%D1%80%D0%B5%D0%B4%D0%B8%D1%81%D0%B5/</loc>
<lastmod>2018-01-15T08:48:18+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/nginx-%D0%BE%D1%88%D0%B8%D0%B1%D0%BA%D0%B0-24-too-many-open-files-%D0%B8-%D0%B5%D0%B5-%D1%80%D0%B5%D1%88%D0%B5%D0%BD%D0%B8%D0%B5/</loc>
<lastmod>2018-01-11T11:43:39+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/prometheus/</loc>
<lastmod>2018-01-08T11:43:07+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/prometheus-2.0-%D0%BD%D0%BE%D0%B2%D1%8B%D0%B9-%D1%84%D0%BE%D1%80%D0%BC%D0%B0%D1%82-alert-rules/</loc>
<lastmod>2018-01-08T11:43:07+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-12-%D1%83%D1%81%D1%82%D0%B0%D0%BD%D0%BE%D0%B2%D0%BA%D0%B0-%D0%BF%D0%B0%D1%80%D0%BE%D0%BB%D1%8F-redis-%D0%B1%D0%B5%D0%B7-%D0%BF%D1%80%D0%B0%D0%B2%D0%BA%D0%B8-%D0%BA%D0%BE%D0%BD%D1%84%D0%B8%D0%B3%D0%B0/</loc>
<lastmod>2018-01-04T11:42:40+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/about/</loc>
<lastmod>2018-01-03T20:41:25+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2018/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-11-%D0%B0%D0%B2%D1%82%D0%BE%D0%BC%D0%B0%D1%82%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%BE%D0%B5-%D1%83%D0%B4%D0%B0%D0%BB%D0%B5%D0%BD%D0%B8%D0%B5-%D0%BD%D0%B5%D0%BD%D1%83%D0%B6%D0%BD%D1%8B%D1%85-%D0%B4%D0%B0%D0%BD%D0%BD%D1%8B%D1%85-docker/</loc>
<lastmod>2018-01-01T11:42:13+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-10-%D0%B0%D0%BB%D0%B8%D0%B0%D1%81%D1%8B-%D0%B4%D0%BB%D1%8F-%D1%87%D0%B0%D1%81%D1%82%D0%BE-%D0%B8%D1%81%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D1%83%D0%B5%D0%BC%D1%8B%D1%85-%D0%BA%D0%BE%D0%BC%D0%B0%D0%BD%D0%B4/</loc>
<lastmod>2017-12-28T11:41:44+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/prometheus-%D0%BC%D0%B8%D0%B3%D1%80%D0%B0%D1%86%D0%B8%D1%8F-%D0%BD%D0%B0-%D0%B2%D0%B5%D1%80%D1%81%D0%B8%D1%8E-2.0/</loc>
<lastmod>2017-12-25T11:41:18+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D1%83%D1%81%D1%82%D0%B0%D0%BD%D0%BE%D0%B2%D0%BA%D0%B0-redis-desktop-manager-%D0%B2-ubuntu-16.04/</loc>
<lastmod>2017-12-21T11:40:59+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/mysql-%D0%BB%D0%BE%D0%B3%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5-%D0%B7%D0%B0%D0%BF%D1%80%D0%BE%D1%81%D0%BE%D0%B2-%D0%BE%D1%82-%D0%BE%D0%BF%D1%80%D0%B5%D0%B4%D0%B5%D0%BB%D0%B5%D0%BD%D0%BD%D1%8B%D1%85-%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D1%82%D0%B5%D0%BB%D0%B5%D0%B9/</loc>
<lastmod>2017-12-18T11:40:33+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-9-%D0%B4%D0%BE%D0%B1%D0%B0%D0%B2%D0%BB%D1%8F%D0%B9%D1%82%D0%B5-%D0%BC%D0%B5%D1%82%D0%B0%D0%B4%D0%B0%D0%BD%D0%BD%D1%8B%D0%B5-%D0%B2-%D0%B2%D0%B0%D1%88%D0%B8-docker-%D0%BE%D0%B1%D1%80%D0%B0%D0%B7%D1%8B/</loc>
<lastmod>2017-12-14T11:40:06+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/expo/</loc>
<lastmod>2017-12-11T11:39:35+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/expo-packager-%D0%BE%D1%81%D1%82%D0%B0%D0%BD%D0%B0%D0%B2%D0%BB%D0%B8%D0%B2%D0%B0%D0%B5%D1%82%D1%81%D1%8F-%D1%87%D0%B5%D1%80%D0%B5%D0%B7-%D0%BD%D0%B5%D1%81%D0%BA%D0%BE%D0%BB%D1%8C%D0%BA%D0%BE-%D1%81%D0%B5%D0%BA%D1%83%D0%BD%D0%B4-%D0%BF%D0%BE%D1%81%D0%BB%D0%B5-%D1%81%D1%82%D0%B0%D1%80%D1%82%D0%B0/</loc>
<lastmod>2017-12-11T11:39:35+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D1%80%D0%B5%D0%B4%D0%B8%D1%80%D0%B5%D0%BA%D1%82%D1%8B-%D0%BD%D0%B0-nginx-rewrite-vs-return/</loc>
<lastmod>2017-12-07T10:39:44+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/docker-swarm/</loc>
<lastmod>2017-12-04T10:39:24+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/gitlab/</loc>
<lastmod>2017-12-04T10:39:24+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/gitlab-ci/</loc>
<lastmod>2017-12-04T10:39:24+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/gitlab-ci-deploy-%D0%BD%D0%B0-docker-swarm/</loc>
<lastmod>2017-12-04T10:39:24+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/esxi/</loc>
<lastmod>2017-11-30T10:39:03+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D0%B2%D0%BA%D0%BB%D1%8E%D1%87%D0%B5%D0%BD%D0%B8%D0%B5-%D0%B2%D0%B8%D1%80%D1%82%D1%83%D0%B0%D0%BB%D1%8C%D0%BD%D0%BE%D0%B9-%D0%BC%D0%B0%D1%88%D0%B8%D0%BD%D1%8B-%D0%BD%D0%B0-%D0%B3%D0%B8%D0%BF%D0%B5%D1%80%D0%B2%D0%B8%D0%B7%D0%BE%D1%80%D0%B5-esxi-%D0%B8%D0%B7-%D0%BA%D0%BE%D0%BD%D1%81%D0%BE%D0%BB%D0%B8/</loc>
<lastmod>2017-11-30T10:39:03+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/gitlab-ci-%D1%87%D0%B5%D0%BC-%D0%BF%D1%80%D0%BE%D1%89%D0%B5-.gitlab-ci.yml-%D1%82%D0%B5%D0%BC-%D0%BB%D1%83%D1%87%D1%88%D0%B5/</loc>
<lastmod>2017-11-27T10:38:37+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-8-%D1%80%D0%B0%D0%B7%D0%BD%D0%B8%D1%86%D0%B0-%D0%BC%D0%B5%D0%B6%D0%B4%D1%83-docker-ps-%D0%B8-docker-container-ls/</loc>
<lastmod>2017-11-23T10:38:02+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/git/</loc>
<lastmod>2017-11-20T10:37:28+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/git-crypt/</loc>
<lastmod>2017-11-20T10:37:28+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D1%88%D0%B8%D1%84%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5-%D1%84%D0%B0%D0%B9%D0%BB%D0%BE%D0%B2-%D0%B2-git-%D1%80%D0%B5%D0%BF%D0%BE%D0%B7%D0%B8%D1%82%D0%BE%D1%80%D0%B8%D0%B8-%D1%81-%D0%BF%D0%BE%D0%BC%D0%BE%D1%89%D1%8C%D1%8E-git-crypt/</loc>
<lastmod>2017-11-20T10:37:28+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-7-%D0%B8%D0%B7%D0%BC%D0%B5%D1%80%D1%8F%D0%B9%D1%82%D0%B5-%D1%80%D0%B5%D1%81%D1%83%D1%80%D1%81%D1%8B-%D0%B8%D1%81%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D1%83%D0%B5%D0%BC%D1%8B%D0%B5-%D0%BA%D0%BE%D0%BD%D1%82%D0%B5%D0%B9%D0%BD%D0%B5%D1%80%D0%B0%D0%BC%D0%B8/</loc>
<lastmod>2017-11-16T10:37:03+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D0%BE%D1%87%D0%B8%D1%81%D1%82%D0%BA%D0%B0-%D0%BA%D1%8D%D1%88%D0%B0-fastcgi-%D0%B5%D1%89%D0%B5-%D0%BE%D0%B4%D0%B8%D0%BD-%D0%B2%D0%B0%D1%80%D0%B8%D0%B0%D0%BD%D1%82/</loc>
<lastmod>2017-11-13T10:36:36+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-6-%D0%BE%D0%B1%D1%8A%D0%B5%D0%B4%D0%B8%D0%BD%D1%8F%D0%B9%D1%82%D0%B5-run-%D0%B2-dockerfile/</loc>
<lastmod>2017-11-09T10:36:09+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/exim/</loc>
<lastmod>2017-11-06T10:35:38+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D0%B4%D0%BE%D0%B1%D0%B0%D0%B2%D0%BB%D0%B5%D0%BD%D0%B8%D0%B5-%D0%BA%D0%B0%D1%81%D1%82%D0%BE%D0%BC%D0%BD%D1%8B%D1%85-%D0%B7%D0%B0%D0%B3%D0%BE%D0%BB%D0%BE%D0%B2%D0%BA%D0%BE%D0%B2-%D0%B4%D0%BB%D1%8F-%D0%B8%D1%81%D1%85%D0%BE%D0%B4%D1%8F%D1%89%D0%B8%D1%85-%D0%BF%D0%B8%D1%81%D0%B5%D0%BC-%D0%B2-exim/</loc>
<lastmod>2017-11-06T10:35:38+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-5-%D1%80%D0%B0%D0%B7%D0%BD%D0%B8%D1%86%D0%B0-%D0%BC%D0%B5%D0%B6%D0%B4%D1%83-%D0%B8%D0%BD%D1%81%D1%82%D1%80%D1%83%D0%BA%D1%86%D0%B8%D1%8F%D0%BC%D0%B8-run-%D0%B8-cmd/</loc>
<lastmod>2017-11-02T08:38:26+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D0%BF%D1%80%D0%BE%D0%B1%D0%BB%D0%B5%D0%BC%D1%8B-%D1%81-%D1%83%D0%B4%D0%B0%D0%BB%D0%B5%D0%BD%D0%B8%D0%B5%D0%BC-docker-%D0%BA%D0%BE%D0%BD%D1%82%D0%B5%D0%B9%D0%BD%D0%B5%D1%80%D0%BE%D0%B2-device-or-resource-busy/</loc>
<lastmod>2017-10-30T08:37:57+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D0%B8%D1%81%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5-%D0%BC%D0%BE%D0%B4%D1%83%D0%BB%D1%8F-nginx-module-vts-%D0%B4%D0%BB%D1%8F-%D1%81%D0%B1%D0%BE%D1%80%D0%B0-%D1%80%D0%B0%D1%81%D1%88%D0%B8%D1%80%D0%B5%D0%BD%D0%BD%D0%BE%D0%B9-%D1%81%D1%82%D0%B0%D1%82%D0%B8%D1%81%D1%82%D0%B8%D0%BA%D0%B8-nginx/</loc>
<lastmod>2017-10-26T08:37:32+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D0%B2%D0%B5%D1%80%D0%B8%D1%84%D0%B8%D0%BA%D0%B0%D1%86%D0%B8%D1%8F-%D0%BA%D0%BE%D0%BC%D0%BC%D0%B8%D1%82%D0%BE%D0%B2-%D0%B2-gitlab-9.5.x/</loc>
<lastmod>2017-10-23T08:37:03+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-4-%D1%81%D1%82%D1%80%D1%83%D0%BA%D1%82%D1%83%D1%80%D0%B0-%D0%BF%D1%80%D0%BE%D0%B5%D0%BA%D1%82%D0%B0-%D1%81-%D0%BD%D0%B5%D1%81%D0%BA%D0%BE%D0%BB%D1%8C%D0%BA%D0%B8%D0%BC%D0%B8-dockerfile-%D0%B8-docker-compose/</loc>
<lastmod>2017-10-19T08:36:40+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/confluence/</loc>
<lastmod>2017-10-16T08:36:08+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D1%83%D1%81%D1%82%D0%B0%D0%BD%D0%BE%D0%B2%D0%BA%D0%B0-%D0%B8-%D0%B0%D0%BA%D1%82%D0%B8%D0%B2%D0%B0%D1%86%D0%B8%D1%8F-atlassian-confluence-6.3.4/</loc>
<lastmod>2017-10-16T08:36:08+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/3-%D0%BF%D1%80%D0%B8%D1%87%D0%B8%D0%BD%D1%8B-%D0%B8%D1%81%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D1%82%D1%8C-alpine-%D0%B2-%D0%BA%D0%B0%D1%87%D0%B5%D1%81%D1%82%D0%B2%D0%B5-%D0%B1%D0%B0%D0%B7%D0%BE%D0%B2%D1%8B%D1%85-docker-%D0%BE%D0%B1%D1%80%D0%B0%D0%B7%D0%BE%D0%B2/</loc>
<lastmod>2017-10-12T17:30:45+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/jira/</loc>
<lastmod>2017-10-09T17:30:12+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D1%83%D1%81%D1%82%D0%B0%D0%BD%D0%BE%D0%B2%D0%BA%D0%B0-%D0%B8-%D0%B0%D0%BA%D1%82%D0%B8%D0%B2%D0%B0%D1%86%D0%B8%D1%8F-jira-software-server-7.5.0/</loc>
<lastmod>2017-10-09T17:30:12+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-3-%D1%83%D1%81%D1%82%D0%B0%D0%BD%D0%BE%D0%B2%D0%BA%D0%B0-%D1%81%D0%B0%D0%BC%D1%8B%D1%85-%D0%BF%D0%BE%D0%BF%D1%83%D0%BB%D1%8F%D1%80%D0%BD%D1%8B%D1%85-%D0%BF%D0%B0%D0%BA%D0%B5%D1%82%D0%BE%D0%B2-%D0%B2-alpine/</loc>
<lastmod>2017-10-05T17:29:46+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/backup/</loc>
<lastmod>2017-10-02T17:29:16+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/c%D0%BA%D1%80%D0%B8%D0%BF%D1%82-%D0%B4%D0%BB%D1%8F-%D0%B1%D0%B5%D0%BA%D0%B0%D0%BF%D0%B0-%D1%82%D0%B0%D0%B1%D0%BB%D0%B8%D1%86-%D0%B2-%D0%B1%D0%B4-%D0%B8-%D1%88%D0%B8%D1%84%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D1%8F/</loc>
<lastmod>2017-10-02T17:29:16+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/docker-%D0%BD%D0%B5-%D0%B8%D0%B3%D0%BD%D0%BE%D0%B3%D0%B8%D1%80%D1%83%D0%B9%D1%82%D0%B5-.dockerignore/</loc>
<lastmod>2017-09-28T17:28:42+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/composer/</loc>
<lastmod>2017-09-25T14:54:35+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/satis/</loc>
<lastmod>2017-09-25T14:54:35+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D0%BA%D1%8D%D1%88-%D0%BF%D0%B0%D0%BA%D0%B5%D1%82%D0%BE%D0%B2-%D0%B4%D0%BB%D1%8F-composer/</loc>
<lastmod>2017-09-25T14:54:35+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-2-%D0%BE%D0%BF%D1%82%D0%B8%D0%BC%D0%B8%D0%B7%D0%B0%D1%86%D0%B8%D1%8F-%D1%80%D0%B0%D0%B7%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D0%BA%D0%B8-%D1%81-%D0%B8%D1%81%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5%D0%BC-%D1%82%D0%BE%D0%BC%D0%BE%D0%B2/</loc>
<lastmod>2017-09-21T14:54:14+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/docker-swarm-stack-deploy-%D0%B8-%D0%B8%D0%BC%D0%B5%D0%BD%D0%BE%D0%B2%D0%B0%D0%BD%D0%BD%D1%8B%D0%B5-%D1%82%D0%BE%D0%BC%D0%B0/</loc>
<lastmod>2017-09-18T14:53:43+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/docker-%D1%81%D0%BE%D0%B2%D0%B5%D1%82-1-%D0%B2%D1%8B%D0%B2%D0%BE%D0%B4-%D1%81%D0%BE%D0%B4%D0%B5%D1%80%D0%B6%D0%B8%D0%BC%D0%BE%D0%B3%D0%BE-%D1%84%D0%B0%D0%B9%D0%BB%D0%B0-%D0%B8%D0%B7-%D0%BA%D0%BE%D0%BD%D1%82%D0%B5%D0%B9%D0%BD%D0%B5%D1%80%D0%B0/</loc>
<lastmod>2017-09-14T14:53:15+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D0%BC%D0%BE%D0%BD%D0%B8%D1%82%D0%BE%D1%80%D0%B8%D0%BD%D0%B3-nginx-%D1%81-%D0%BF%D0%BE%D0%BC%D0%BE%D1%89%D1%8C%D1%8E-nixstats/</loc>
<lastmod>2017-09-11T14:52:44+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/docker-swarm-stack-deploy-%D0%B8-env-%D0%BF%D0%B5%D1%80%D0%B5%D0%BC%D0%B5%D0%BD%D0%BD%D1%8B%D0%B5/</loc>
<lastmod>2017-09-07T14:52:20+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/gitlab-ci-%D0%B0%D0%BD%D0%B0%D0%BB%D0%B8%D0%B7-%D0%BA%D0%BE%D0%B4%D0%B0/</loc>
<lastmod>2017-08-24T14:52:00+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D1%81%D0%B1%D0%BE%D1%80-%D0%B8-%D0%B0%D0%BD%D0%B0%D0%BB%D0%B8%D0%B7-%D0%BB%D0%BE%D0%B3%D0%BE%D0%B2-nginx-%D1%81-%D0%BF%D0%BE%D0%BC%D0%BE%D1%89%D1%8C%D1%8E-graylog2/</loc>
<lastmod>2017-08-21T14:51:39+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D0%BA%D0%B0%D0%BA-%D1%83%D0%B1%D0%B5%D0%B4%D0%B8%D1%82%D1%8C-%D0%B2%D0%BB%D0%B0%D0%B4%D0%B5%D0%BB%D1%8C%D1%86%D0%B0-%D0%B1%D0%B8%D0%B7%D0%BD%D0%B5%D1%81%D0%B0-%D0%B8%D0%BB%D0%B8-%D1%81%D0%B2%D0%BE%D0%B5%D0%B3%D0%BE-%D1%80%D1%83%D0%BA%D0%BE%D0%B2%D0%BE%D0%B4%D0%B8%D1%82%D0%B5%D0%BB%D1%8F-%D0%B8%D1%81%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D1%82%D1%8C-docker/</loc>
<lastmod>2017-08-17T14:51:09+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/percona/</loc>
<lastmod>2017-08-14T14:50:28+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D1%80%D0%B5%D0%B7%D0%B5%D1%80%D0%B2%D0%BD%D0%BE%D0%B5-%D0%BA%D0%BE%D0%BF%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5-mysql-5.7-%D1%81-%D0%BF%D0%BE%D0%BC%D0%BE%D1%89%D1%8C%D1%8E-percona-xtrabackup/</loc>
<lastmod>2017-08-14T14:50:28+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/php-fpm/</loc>
<lastmod>2017-08-10T10:02:10+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D0%BC%D0%BE%D0%BD%D0%B8%D1%82%D0%BE%D1%80%D0%B8%D0%BD%D0%B3-php-fpm-%D1%81-%D0%BF%D0%BE%D0%BC%D0%BE%D1%89%D1%8C%D1%8E-nixstats/</loc>
<lastmod>2017-08-10T10:02:10+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/portainer/</loc>
<lastmod>2017-08-07T10:01:45+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/portainer-webui-%D0%B4%D0%BB%D1%8F-%D1%83%D0%BF%D1%80%D0%B0%D0%B2%D0%BB%D0%B5%D0%BD%D0%B8%D1%8F-docker-%D0%BA%D0%BE%D0%BD%D1%82%D0%B5%D0%B9%D0%BD%D0%B5%D1%80%D0%B0%D0%BC%D0%B8/</loc>
<lastmod>2017-08-07T10:01:45+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/sms/</loc>
<lastmod>2017-08-03T10:01:19+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D0%B1%D0%B5%D1%81%D0%BF%D0%BB%D0%B0%D1%82%D0%BD%D1%8B%D0%B9-%D0%BC%D0%BE%D0%BD%D0%B8%D1%82%D0%BE%D1%80%D0%B8%D0%BD%D0%B3-%D1%81%D0%B5%D1%80%D0%B2%D0%B5%D1%80%D0%B0-%D1%81-%D0%BE%D0%BF%D0%BE%D0%B2%D0%B5%D1%89%D0%B5%D0%BD%D0%B8%D0%B5%D0%BC-%D0%B2-telegram-sms/</loc>
<lastmod>2017-08-03T10:01:19+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/percona-server-%D0%B8-percona-xtrabackup-%D0%B2-docker-%D0%BA%D0%BE%D0%BD%D1%82%D0%B5%D0%B9%D0%BD%D0%B5%D1%80%D0%B5/</loc>
<lastmod>2017-07-31T10:00:28+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/nginx-%D0%B8-geoip-%D0%B1%D0%BB%D0%BE%D0%BA%D0%B8%D1%80%D0%BE%D0%B2%D0%BA%D0%B0-%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D1%82%D0%B5%D0%BB%D0%B5%D0%B9-%D0%B8%D0%B7-%D0%BE%D0%BF%D1%80%D0%B5%D0%B4%D0%B5%D0%BB%D0%B5%D0%BD%D0%BD%D1%8B%D1%85-%D1%81%D1%82%D1%80%D0%B0%D0%BD/</loc>
<lastmod>2017-07-27T10:00:03+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D0%B8%D1%81%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5-%D0%BC%D0%BE%D0%B4%D1%83%D0%BB%D1%8F-ngx_cache_purge-%D0%B4%D0%BB%D1%8F-%D0%BE%D1%87%D0%B8%D1%81%D1%82%D0%BA%D0%B8-%D0%BA%D1%8D%D1%88%D0%B0-fastcgi/</loc>
<lastmod>2017-07-24T09:59:31+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D0%BE%D1%87%D0%B8%D1%81%D1%82%D0%BA%D0%B0-%D0%BC%D0%B5%D1%81%D1%82%D0%B0-%D0%B2-private-docker-registry/</loc>
<lastmod>2017-07-20T09:59:03+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D0%BC%D0%BE%D0%BD%D0%B8%D1%82%D0%BE%D1%80%D0%B8%D0%BD%D0%B3-docker-c-%D0%BF%D0%BE%D0%BC%D0%BE%D1%89%D1%8C%D1%8E-prometheus/</loc>
<lastmod>2017-07-17T09:58:43+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/gitlab-ci-zero-downtime-docker-deployment/</loc>
<lastmod>2017-07-13T09:58:22+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/gitlab-custom-hooks/</loc>
<lastmod>2017-07-10T09:58:02+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/gcs/</loc>
<lastmod>2017-07-06T08:34:13+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D0%BF%D1%80%D0%BE%D1%81%D1%82%D0%BE%D0%B5-%D0%B8-%D0%B4%D0%B5%D1%88%D0%B5%D0%B2%D0%BE%D0%B5-%D1%80%D0%B5%D0%B7%D0%B5%D1%80%D0%B2%D0%BD%D0%BE%D0%B5-%D0%BA%D0%BE%D0%BF%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5-%D0%BD%D0%B0-google-cloud-storage/</loc>
<lastmod>2017-07-06T08:34:13+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/dockerfile-add-%D0%B8%D0%BB%D0%B8-copy/</loc>
<lastmod>2017-07-03T08:33:44+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D0%BF%D0%B5%D1%80%D0%B5%D1%81%D0%B1%D0%BE%D1%80%D0%BA%D0%B0-nginx-%D1%81-%D0%BF%D0%BE%D0%B4%D0%B4%D0%B5%D1%80%D0%B6%D0%BA%D0%BE%D0%B9-pagespeed/</loc>
<lastmod>2017-06-29T08:33:22+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/gitlab-ci-%D1%87%D0%B0%D1%81%D1%82%D1%8C-10-%D1%8D%D1%82%D0%B0%D0%BF-cleanup-%D0%B2-.gitlab-ci.yml/</loc>
<lastmod>2017-06-26T08:32:57+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/openssl-%D0%BF%D1%80%D0%BE%D1%81%D1%82%D0%BE%D0%B5-%D1%88%D0%B8%D1%84%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5-%D1%84%D0%B0%D0%B9%D0%BB%D0%BE%D0%B2-%D1%81-%D0%B8%D1%81%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5%D0%BC-%D0%BF%D0%B0%D1%80%D0%BE%D0%BB%D1%8F/</loc>
<lastmod>2017-06-22T08:32:23+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/gitlab-ci-%D1%87%D0%B0%D1%81%D1%82%D1%8C-9-%D1%8D%D1%82%D0%B0%D0%BF-deploy-%D0%B2-.gitlab-ci.yml-2/</loc>
<lastmod>2017-06-19T08:31:53+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/gitlab-ci-%D1%87%D0%B0%D1%81%D1%82%D1%8C-9-%D1%8D%D1%82%D0%B0%D0%BF-deploy-%D0%B2-.gitlab-ci.yml/</loc>
<lastmod>2017-06-15T08:31:19+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/gitlab-ci-%D1%87%D0%B0%D1%81%D1%82%D1%8C-8-%D1%8D%D1%82%D0%B0%D0%BF-release-%D0%B2-.gitlab-ci.yml/</loc>
<lastmod>2017-06-12T08:30:43+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/gitlab-ci-%D1%87%D0%B0%D1%81%D1%82%D1%8C-7-%D1%8D%D1%82%D0%B0%D0%BF-test-%D0%B2-.gitlab-ci.yml/</loc>
<lastmod>2017-06-08T08:30:13+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/gitlab-ci-%D1%87%D0%B0%D1%81%D1%82%D1%8C-6-%D1%8D%D1%82%D0%B0%D0%BF-build-%D0%B2-.gitlab-ci.yml-2/</loc>
<lastmod>2017-06-01T08:29:35+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/gitlab-ci-%D1%87%D0%B0%D1%81%D1%82%D1%8C-5-%D1%8D%D1%82%D0%B0%D0%BF-build-%D0%B2-.gitlab-ci.yml-1/</loc>
<lastmod>2017-05-29T16:25:44+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/gitlab-ci-%D1%87%D0%B0%D1%81%D1%82%D1%8C-4-%D1%8D%D1%82%D0%B0%D0%BF-spawn-%D0%B2-.gitlab-ci.yml/</loc>
<lastmod>2017-05-25T16:25:07+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D1%83%D1%81%D1%82%D0%B0%D0%BD%D0%BE%D0%B2%D0%BA%D0%B0-dns-%D1%81%D0%B5%D1%80%D0%B2%D0%B5%D1%80%D0%B0-%D0%B2-docker-%D0%BA%D0%BE%D0%BD%D1%82%D0%B5%D0%B9%D0%BD%D0%B5%D1%80%D0%B5/</loc>
<lastmod>2017-05-18T16:24:35+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/gitlab-ci-%D1%87%D0%B0%D1%81%D1%82%D1%8C-3-%D0%B2%D0%B2%D0%B5%D0%B4%D0%B5%D0%BD%D0%B8%D0%B5-%D0%B2-.gitlab-ci.yml/</loc>
<lastmod>2017-05-15T16:24:13+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/gitlab-ci-%D1%87%D0%B0%D1%81%D1%82%D1%8C-2-%D1%81%D0%BF%D0%B5%D1%86%D0%B8%D0%B0%D0%BB%D1%8C%D0%BD%D1%8B%D0%B5-%D0%BE%D0%B1%D1%80%D0%B0%D0%B7%D1%8B/</loc>
<lastmod>2017-05-11T16:23:46+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/gitlab-ci-%D1%87%D0%B0%D1%81%D1%82%D1%8C-1-%D0%B7%D0%B0%D0%BF%D1%83%D1%81%D0%BA-%D1%80%D0%B0%D0%BD%D0%BD%D0%B5%D1%80%D0%BE%D0%B2/</loc>
<lastmod>2017-05-08T16:23:21+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/gitlab-%D0%B2-docker-%D0%BA%D0%BE%D0%BD%D1%82%D0%B5%D0%B9%D0%BD%D0%B5%D1%80%D0%B0%D1%85-%D1%80%D0%B5%D0%B7%D0%B5%D1%80%D0%B2%D0%BD%D0%BE%D0%B5-%D0%BA%D0%BE%D0%BF%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5/</loc>
<lastmod>2017-05-04T16:22:52+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D0%BF%D0%BE%D0%B4%D0%BD%D0%B8%D0%BC%D0%B0%D0%B5%D0%BC-gitlab-%D0%B2-docker-%D0%BA%D0%BE%D0%BD%D1%82%D0%B5%D0%B9%D0%BD%D0%B5%D1%80%D0%B0%D1%85-%D0%B7%D0%B0-nginx/</loc>
<lastmod>2017-05-01T16:22:28+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/defunct/</loc>
<lastmod>2017-04-27T16:22:01+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/zombie/</loc>
<lastmod>2017-04-27T16:22:01+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D0%B8%D1%89%D0%B5%D0%BC-%D0%B8-%D1%83%D0%B1%D0%B8%D0%B2%D0%B0%D0%B5%D0%BC-zombie-%D0%BF%D1%80%D0%BE%D1%86%D0%B5%D1%81%D1%81%D1%8B/</loc>
<lastmod>2017-04-27T16:22:01+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D0%BE%D1%87%D0%B8%D1%81%D1%82%D0%BA%D0%B0-%D0%BC%D0%B5%D1%81%D1%82%D0%B0-%D0%BD%D0%B0-%D0%B4%D0%B8%D1%81%D0%BA%D0%B5-%D0%BF%D0%BE%D1%81%D0%BB%D0%B5-docker/</loc>
<lastmod>2017-04-24T16:21:39+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D1%83%D1%81%D1%82%D0%B0%D0%BD%D0%BE%D0%B2%D0%BA%D0%B0-prometheus-node-exporter-%D0%B2-centos-7/</loc>
<lastmod>2017-04-20T13:58:20+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/gitlab-gitlab-ci-docker-registry-%D1%81-%D0%BF%D0%BE%D0%BC%D0%BE%D1%89%D1%8C%D1%8E-docker-compose/</loc>
<lastmod>2017-04-17T13:57:54+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D0%BE%D0%BF%D1%82%D0%B8%D0%BC%D0%B8%D0%B7%D0%B0%D1%86%D0%B8%D1%8F-docker-%D0%BE%D0%B1%D1%80%D0%B0%D0%B7%D0%BE%D0%B2/</loc>
<lastmod>2017-04-13T13:57:27+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/gitlab-%D0%BF%D0%B5%D1%80%D0%B5%D0%BD%D0%BE%D1%81-%D0%B4%D0%B0%D0%BD%D0%BD%D1%8B%D1%85-%D1%81-omnibus-%D1%83%D1%81%D1%82%D0%B0%D0%BD%D0%BE%D0%B2%D0%BA%D0%B8-%D0%B2-docker-%D1%83%D1%81%D1%82%D0%B0%D0%BD%D0%BE%D0%B2%D0%BA%D1%83/</loc>
<lastmod>2017-04-10T13:57:12+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/dhcp/</loc>
<lastmod>2017-04-06T13:56:45+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D1%83%D1%81%D1%82%D0%B0%D0%BD%D0%BE%D0%B2%D0%BA%D0%B0-%D0%B8-%D0%BD%D0%B0%D1%81%D1%82%D1%80%D0%BE%D0%B9%D0%BA%D0%B0-dns-dhcp-%D1%81-%D0%B4%D0%B8%D0%BD%D0%B0%D0%BC%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%B8%D0%BC-%D0%BE%D0%B1%D0%BD%D0%BE%D0%B2%D0%BB%D0%B5%D0%BD%D0%B8%D0%B5%D0%BC-%D0%B7%D0%BE%D0%BD-%D0%B2-ubuntu-16.04/</loc>
<lastmod>2017-04-06T13:56:45+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D1%80%D0%B5%D0%B7%D0%B5%D1%80%D0%B2%D0%BD%D0%BE%D0%B5-%D0%BA%D0%BE%D0%BF%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5-%D0%B2%D0%B8%D1%80%D1%82%D1%83%D0%B0%D0%BB%D1%8C%D0%BD%D1%8B%D1%85-%D0%BC%D0%B0%D1%88%D0%B8%D0%BD-esxi-%D1%81-%D0%BF%D0%BE%D0%BC%D0%BE%D1%89%D1%8C%D1%8E-xsibackup/</loc>
<lastmod>2017-04-03T13:56:09+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D0%BD%D0%B0%D1%81%D1%82%D1%80%D0%BE%D0%B9%D0%BA%D0%B0-%D0%BA%D1%8D%D1%88%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D1%8F-%D0%BD%D0%B0-nginx/</loc>
<lastmod>2017-03-30T13:55:39+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/make/</loc>
<lastmod>2017-03-27T13:55:12+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D0%B8%D1%81%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5-make-%D0%B4%D0%BB%D1%8F-%D1%83%D0%BF%D1%80%D0%B0%D0%B2%D0%BB%D0%B5%D0%BD%D0%B8%D1%8F-docker-%D0%BA%D0%BE%D0%BD%D1%82%D0%B5%D0%B9%D0%BD%D0%B5%D1%80%D0%B0%D0%BC%D0%B8/</loc>
<lastmod>2017-03-27T13:55:12+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/beanstalkd/</loc>
<lastmod>2017-03-23T13:54:51+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D1%83%D1%81%D1%82%D0%B0%D0%BD%D0%BE%D0%B2%D0%BA%D0%B0-%D0%B8-%D0%BD%D0%B0%D1%81%D1%82%D1%80%D0%BE%D0%B9%D0%BA%D0%B0-%D1%81%D0%B5%D1%80%D0%B2%D0%B5%D1%80%D0%B0-%D0%BE%D1%87%D0%B5%D1%80%D0%B5%D0%B4%D0%B5%D0%B9-beanstalkd-%D0%B2-centos7/</loc>
<lastmod>2017-03-23T13:54:51+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/docker-%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D0%B0-%D1%81-%D0%BA%D0%BE%D0%BD%D1%82%D0%B5%D0%B9%D0%BD%D0%B5%D1%80%D0%B0%D0%BC%D0%B8/</loc>
<lastmod>2017-03-20T13:54:25+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D1%83%D1%81%D1%82%D0%B0%D0%BD%D0%BE%D0%B2%D0%BA%D0%B0-docker-%D0%B2-ubuntu-16.04/</loc>
<lastmod>2017-03-16T11:18:52+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/ssd/</loc>
<lastmod>2017-03-13T11:18:29+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D0%BC%D0%BE%D0%BD%D0%B8%D1%82%D0%BE%D1%80%D0%B8%D0%BD%D0%B3-smart-%D0%B0%D1%82%D1%80%D0%B8%D0%B1%D1%83%D1%82%D0%BE%D0%B2-ssd-intel-dc-s3500-s3700-series/</loc>
<lastmod>2017-03-13T11:18:29+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D1%83%D1%81%D1%82%D0%B0%D0%BD%D0%BE%D0%B2%D0%BA%D0%B0-%D0%B8-%D0%BD%D0%B0%D1%81%D1%82%D1%80%D0%BE%D0%B9%D0%BA%D0%B0-%D1%81%D0%B5%D1%80%D0%B2%D0%B5%D1%80%D0%B0-%D0%BE%D1%87%D0%B5%D1%80%D0%B5%D0%B4%D0%B5%D0%B9-beanstalkd-%D0%B2-debian-jessie/</loc>
<lastmod>2017-03-09T11:17:57+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/spf/</loc>
<lastmod>2017-03-06T11:17:28+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D1%87%D1%82%D0%BE-%D1%82%D0%B0%D0%BA%D0%BE%D0%B5-spf/</loc>
<lastmod>2017-03-06T11:17:28+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/console/</loc>
<lastmod>2017-03-02T11:17:07+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D0%B3%D0%BE%D1%80%D1%8F%D1%87%D0%B8%D0%B5-%D0%BA%D0%BB%D0%B0%D0%B2%D0%B8%D1%88%D0%B8-%D0%B2-bash/</loc>
<lastmod>2017-03-02T11:17:07+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D0%B8%D1%81%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5-percona-xtrabackup-%D0%BF%D1%80%D0%B8-%D0%B1%D0%BE%D0%BB%D1%8C%D1%88%D0%BE%D0%BC-%D0%BA%D0%BE%D0%BB%D0%B8%D1%87%D0%B5%D1%81%D1%82%D0%B2%D0%B5-%D1%82%D0%B0%D0%B1%D0%BB%D0%B8%D1%86-%D0%B2-%D0%B1%D0%B4/</loc>
<lastmod>2017-02-27T11:16:04+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/lxc/</loc>
<lastmod>2017-02-23T11:15:33+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D0%BD%D0%B0%D1%81%D1%82%D1%80%D0%BE%D0%B9%D0%BA%D0%B0-%D1%81%D1%82%D0%B0%D1%82%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%B8%D1%85-ip-%D0%B0%D0%B4%D1%80%D0%B5%D1%81%D0%BE%D0%B2-%D0%B4%D0%BB%D1%8F-lxc-%D0%BA%D0%BE%D0%BD%D1%82%D0%B5%D0%B9%D0%BD%D0%B5%D1%80%D0%BE%D0%B2-%D0%B2-centos-7/</loc>
<lastmod>2017-02-23T11:15:33+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/lets-encrypt-%D0%B8-nginx-%D0%BF%D0%BE%D0%BB%D1%83%D1%87%D0%B0%D0%B5%D0%BC-%D0%BC%D0%B0%D0%BA%D1%81%D0%B8%D0%BC%D1%83%D0%BC-%D0%BE%D1%82-ssllabs.com-%D0%B8-securityheaders.io/</loc>
<lastmod>2017-02-20T11:14:56+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D1%83%D1%81%D1%82%D0%B0%D0%BD%D0%BE%D0%B2%D0%BA%D0%B0-%D0%B8-%D0%BD%D0%B0%D1%81%D1%82%D1%80%D0%BE%D0%B9%D0%BA%D0%B0-lxc-%D0%B2-centos-7/</loc>
<lastmod>2017-02-16T11:14:23+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/deployer/</loc>
<lastmod>2017-02-13T11:14:00+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D0%B3%D0%B8%D0%B1%D0%BA%D0%B8%D0%B9-%D0%B4%D0%B5%D0%BF%D0%BB%D0%BE%D0%B9-%D0%BF%D1%80%D0%B8%D0%BB%D0%BE%D0%B6%D0%B5%D0%BD%D0%B8%D0%B9-%D1%81-deployer/</loc>
<lastmod>2017-02-13T11:14:00+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D0%BD%D0%B0%D1%81%D1%82%D1%80%D0%BE%D0%B9%D0%BA%D0%B0-nginx-ssl-%D0%BE%D1%82-lets-encrypt-%D0%B2%D0%B0%D1%80%D0%B8%D0%B0%D0%BD%D1%82-2-%D1%8D%D0%BB%D0%B5%D0%B3%D0%B0%D0%BD%D1%82%D0%BD%D1%8B%D0%B9/</loc>
<lastmod>2017-02-09T21:08:17+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/brotli/</loc>
<lastmod>2017-02-06T21:07:37+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D0%BF%D0%B5%D1%80%D0%B5%D1%81%D0%B1%D0%BE%D1%80%D0%BA%D0%B0-nginx-%D1%81-%D0%BF%D0%BE%D0%B4%D0%B4%D0%B5%D1%80%D0%B6%D0%BA%D0%BE%D0%B9-brotli/</loc>
<lastmod>2017-02-06T21:07:37+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D1%88%D0%BF%D0%B0%D1%80%D0%B3%D0%B0%D0%BB%D0%BA%D0%B0-%D0%BF%D0%BE-%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D0%B5-%D0%B2-%D0%BA%D0%BE%D0%BC%D0%B0%D0%BD%D0%B4%D0%BD%D0%BE%D0%B9-%D1%81%D1%82%D1%80%D0%BE%D0%BA%D0%B5/</loc>
<lastmod>2017-02-02T21:07:12+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D0%BD%D0%B0%D1%81%D1%82%D1%80%D0%BE%D0%B9%D0%BA%D0%B0-%D1%81%D0%B5%D1%82%D0%B8-%D0%B4%D0%BB%D1%8F-lxc-%D0%BA%D0%BE%D0%BD%D1%82%D0%B5%D0%B9%D0%BD%D0%B5%D1%80%D0%BE%D0%B2-%D0%B2-debian-8-centos-7-%D0%B8-fedora-21/</loc>
<lastmod>2017-01-30T21:06:43+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/new-relic/</loc>
<lastmod>2017-01-26T21:05:37+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D0%BC%D0%BE%D0%BD%D0%B8%D1%82%D0%BE%D1%80%D0%B8%D0%BD%D0%B3-php-fpm-%D1%81-%D0%BF%D0%BE%D0%BC%D0%BE%D1%89%D1%8C%D1%8E-new-relic-plugin-agent/</loc>
<lastmod>2017-01-26T21:05:37+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/ansible/</loc>
<lastmod>2017-01-23T21:04:33+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/ansible-%D0%B2%D0%B2%D0%BE%D0%B4-sudo-%D0%BF%D0%B0%D1%80%D0%BE%D0%BB%D1%8F-%D0%BF%D1%80%D0%B8-%D0%B2%D1%8B%D0%BF%D0%BE%D0%BB%D0%BD%D0%B5%D0%BD%D0%B8%D0%B8-playbook/</loc>
<lastmod>2017-01-23T21:04:33+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/munin/</loc>
<lastmod>2017-01-19T21:04:05+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/munin-%D0%BC%D0%BE%D0%BD%D0%B8%D1%82%D0%BE%D1%80%D0%B8%D0%BD%D0%B3-php-fpm/</loc>
<lastmod>2017-01-19T21:04:05+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/abusebsi-offene-netbios-namensdienste-in-as24940/</loc>
<lastmod>2017-01-16T21:03:41+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/failed-to-restart-nginx.service-unit-nginx.service-is-masked/</loc>
<lastmod>2017-01-12T21:03:09+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/asterisk/</loc>
<lastmod>2017-01-09T21:02:28+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/cisco/</loc>
<lastmod>2017-01-09T21:02:28+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/linksys/</loc>
<lastmod>2017-01-09T21:02:28+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/provisioning-linksys-cisco-voip-devices/</loc>
<lastmod>2017-01-09T21:02:28+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D1%82%D0%BE%D0%BF-%D0%B2%D0%B0%D1%88%D0%B8%D1%85-linux-%D0%BA%D0%BE%D0%BC%D0%B0%D0%BD%D0%B4-%D0%BF%D0%BE%D0%BB%D0%B5%D0%B7%D0%BD%D0%BE%D1%81%D1%82%D0%B8/</loc>
<lastmod>2017-01-05T18:08:09+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2017/%D0%BF%D0%BE%D0%B4%D1%81%D0%B2%D0%B5%D1%82%D0%BA%D0%B0-%D1%81%D0%B8%D0%BD%D1%82%D0%B0%D0%BA%D1%81%D0%B8%D1%81%D0%B0-%D0%B2-mcedit-%D0%B8-bash/</loc>
<lastmod>2017-01-02T18:07:43+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/gpg/</loc>
<lastmod>2016-12-29T18:07:16+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/pwgen/</loc>
<lastmod>2016-12-29T18:07:16+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2016/%D0%B3%D0%B5%D0%BD%D0%B5%D1%80%D0%B0%D1%86%D0%B8%D1%8F-%D0%BD%D0%B0%D0%B4%D0%B5%D0%B6%D0%BD%D1%8B%D1%85-%D0%BF%D0%B0%D1%80%D0%BE%D0%BB%D0%B5%D0%B9-%D0%B2-linux-4-%D0%BF%D1%80%D0%BE%D1%81%D1%82%D1%8B%D1%85-%D1%81%D0%BF%D0%BE%D1%81%D0%BE%D0%B1%D0%B0/</loc>
<lastmod>2016-12-29T18:07:16+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2016/%D0%BE%D0%B1%D0%BD%D0%BE%D0%B2%D0%BB%D0%B5%D0%BD%D0%B8%D0%B5-%D1%8F%D0%B4%D1%80%D0%B0-%D0%B2-ubuntu-16.04/</loc>
<lastmod>2016-12-26T18:06:47+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2016/attributeerror-module-object-has-no-attribute-protocol_sslv3/</loc>
<lastmod>2016-12-22T18:06:20+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/glusterfs/</loc>
<lastmod>2016-12-19T18:05:44+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2016/%D0%B4%D0%BE%D0%B1%D0%B0%D0%B2%D0%BB%D0%B5%D0%BD%D0%B8%D0%B5-%D0%B8-%D1%83%D0%B4%D0%B0%D0%BB%D0%B5%D0%BD%D0%B8%D0%B5-%D0%BA%D0%B8%D1%80%D0%BF%D0%B8%D1%87%D0%B5%D0%B9-%D0%B2-glusterfs/</loc>
<lastmod>2016-12-19T18:05:44+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2016/cp-cannot-stat-ltmain.sh-no-such-file-or-directory/</loc>
<lastmod>2016-12-15T18:05:16+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/twig/</loc>
<lastmod>2016-12-15T18:05:16+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/fail2ban/</loc>
<lastmod>2016-12-12T18:04:41+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2016/%D0%B7%D0%B0%D1%89%D0%B8%D1%82%D0%B0-asterisk-%D1%81-%D0%BF%D0%BE%D0%BC%D0%BE%D1%89%D1%8C%D1%8E-fail2ban-%D0%BF%D1%80%D0%BE%D0%B4%D0%BE%D0%BB%D0%B6%D0%B5%D0%BD%D0%B8%D0%B5/</loc>
<lastmod>2016-12-12T18:04:41+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2016/%D0%BD%D0%B0%D1%81%D1%82%D1%80%D0%BE%D0%B9%D0%BA%D0%B0-%D1%81%D0%B2%D1%8F%D0%B7%D0%BA%D0%B8-nginx-%D0%B8-fail2ban-%D0%B2-debian/</loc>
<lastmod>2016-12-08T18:04:13+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2016/munin-%D0%BC%D0%BE%D0%BD%D0%B8%D1%82%D0%BE%D1%80%D0%B8%D0%B3-php-opcache/</loc>
<lastmod>2016-12-05T18:03:36+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/hardware/</loc>
<lastmod>2016-12-01T17:31:09+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2016/%D0%BA%D0%B0%D0%BA-%D0%BF%D0%B5%D1%80%D0%B5%D0%B7%D0%B0%D0%B3%D1%80%D1%83%D0%B7%D0%B8%D1%82%D1%8C%D1%81%D1%8F-%D0%BF%D1%80%D0%B8-input-output-error/</loc>
<lastmod>2016-12-01T17:31:09+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2016/%D0%BF%D0%B5%D1%80%D0%B5%D0%B8%D0%BC%D0%B5%D0%BD%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5-%D0%B2%D0%B8%D1%80%D1%82%D1%83%D0%B0%D0%BB%D1%8C%D0%BD%D1%8B%D1%85-%D0%BC%D0%B0%D1%88%D0%B8%D0%BD-%D0%B2-vmware-esxi/</loc>
<lastmod>2016-11-28T17:30:34+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2016/%D0%B2%D1%81%D1%82%D1%80%D0%B5%D1%87%D0%B0%D0%B9%D1%82%D0%B5-new-relic-infrastructure/</loc>
<lastmod>2016-11-24T17:30:09+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/http2/</loc>
<lastmod>2016-11-21T10:36:33+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2016/%D0%BF%D0%B5%D1%80%D0%B5%D1%81%D0%B1%D0%BE%D1%80%D0%BA%D0%B0-nginx-%D1%81-openssl-1.0.2-%D0%B4%D0%BB%D1%8F-http2.0/</loc>
<lastmod>2016-11-21T10:36:33+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2016/%D0%BE%D0%B1%D0%BD%D0%BE%D0%B2%D0%BB%D0%B5%D0%BD%D0%B8%D0%B5-%D0%BA%D0%BB%D1%8E%D1%87%D0%B0-%D0%BF%D0%BE%D0%B4%D0%BF%D0%B8%D1%81%D0%B8-%D0%B4%D0%BB%D1%8F-percona-%D0%B2-debian/</loc>
<lastmod>2016-11-17T10:35:59+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/cp/</loc>
<lastmod>2016-11-14T10:00:29+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2016/%D0%BF%D1%80%D0%B0%D0%BA%D1%82%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%B8%D0%B5-%D0%BF%D1%80%D0%B8%D0%BC%D0%B5%D1%80%D1%8B-%D0%B8%D1%81%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D1%8F-cp/</loc>
<lastmod>2016-11-14T10:00:29+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/apache/</loc>
<lastmod>2016-11-10T09:59:58+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2016/%D0%BD%D0%B0%D1%81%D1%82%D1%80%D0%BE%D0%B9%D0%BA%D0%B0-%D1%81%D0%B2%D1%8F%D0%B7%D0%BA%D0%B8-apache-%D0%B8-fail2ban-%D0%B2-debian/</loc>
<lastmod>2016-11-10T09:59:58+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/nmap/</loc>
<lastmod>2016-11-07T09:59:25+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2016/%D0%BF%D1%80%D0%B0%D0%BA%D1%82%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%B8%D0%B5-%D0%BF%D1%80%D0%B8%D0%BC%D0%B5%D1%80%D1%8B-%D0%B8%D1%81%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D1%8F-nmap/</loc>
<lastmod>2016-11-07T09:59:25+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/cve/</loc>
<lastmod>2016-11-03T09:59:03+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/tags/kernel/</loc>
<lastmod>2016-11-03T09:59:03+02:00</lastmod>
</url><url>
<loc>https://ealebed.github.io/posts/2016/%D0%BA%D0%B0%D0%BA-%D0%BF%D0%BE%D1%84%D0%B8%D0%BA%D1%81%D0%B8%D1%82%D1%8C-%D1%83%D1%8F%D0%B7%D0%B2%D0%B8%D0%BC%D0%BE%D1%81%D1%82%D1%8C-dirty-cow/</loc>
<lastmod>2016-11-03T09:59:03+02:00</lastmod>
</url><url>