Commit 08d77b3a authored by Simonas's avatar Simonas

Merge branch 'regions'

parents 17770095 aa5474b9
server {
listen 80;
listen [::]:80;
server_name dev.biuro.lt;
location / {
rewrite ^ https://$host$request_uri? permanent;
}
location ^~ /.well-known {
allow all;
root /data/letsencrypt/;
}
}
......@@ -11,26 +11,36 @@ server {
allow all;
root /data/letsencrypt/;
}
}
server {
listen 80;
listen [::]:80;
server_name dev.biuro.lv;
location / {
rewrite ^ https://$host$request_uri? permanent;
}
location ^~ /.well-known {
allow all;
root /data/letsencrypt/;
}
}
server {
listen 80;
listen [::]:80;
server_name dev.biuro.ee;
location / {
rewrite ^ https://$host$request_uri? permanent;
}
# root /var/www/html;
# index index.php;
#
# access_log /var/log/nginx/access.log;
# error_log /var/log/nginx/error.log;
#
# location / {
# try_files $uri $uri/ /index.php?$args;
# }
# location ~ \.php$ {
# try_files $uri =404;
# fastcgi_split_path_info ^(.+\.php)(/.+)$;
# fastcgi_pass wordpress:9000;
# fastcgi_index index.php;
# include fastcgi_params;
# fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
# fastcgi_param PATH_INFO $fastcgi_path_info;
# }
location ^~ /.well-known {
allow all;
root /data/letsencrypt/;
}
}
server {
......@@ -38,7 +48,6 @@ server {
listen [::]:443 ssl http2;
server_name dev.biuro.lt;
# add_header Strict-Transport-Security "max-age=31536000" always;
add_header Strict-Transport-Security "max-age=31536000; includeSubdomains";
ssl_session_cache shared:SSL:20m;
......@@ -53,13 +62,55 @@ server {
resolver 8.8.8.8 8.8.4.4;
ssl_certificate /etc/letsencrypt/live/dev.biuro.lt/certificate.pem;
# ssl_certificate /etc/letsencrypt/live/dev.biuro.lt/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/dev.biuro.lt/privkey.pem;
ssl_trusted_certificate /etc/letsencrypt/live/dev.biuro.lt/ca-bundle.pem;
# ssl_trusted_certificate /etc/letsencrypt/live/dev.biuro.lt/chain.pem;
# ssl_certificate /etc/letsencrypt/live/dev.biuro.lt/cert.crt;
# ssl_certificate_key /etc/letsencrypt/live/dev.biuro.lt/key.pem;
# ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3;
# ssl_prefer_server_ciphers on;
# ssl_ciphers 'TLS-CHACHA20-POLY1305-SHA256:TLS-AES-256-GCM-SHA384:TLS-AES-128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256';
root /var/www/html;
index index.php;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
location / {
try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass wordpress:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
}
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name dev.biuro.lv;
add_header Strict-Transport-Security "max-age=31536000; includeSubdomains";
ssl_session_cache shared:SSL:20m;
ssl_session_timeout 10m;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_ciphers "ECDH+AESGCM:ECDH+AES256:ECDH+AES128:!ADH:!AECDH:!MD5;";
ssl_stapling on;
ssl_stapling_verify on;
resolver 8.8.8.8 8.8.4.4;
ssl_certificate /etc/letsencrypt/live/dev.biuro.lv/certificate.pem;
ssl_certificate_key /etc/letsencrypt/live/dev.biuro.lv/privkey.pem;
ssl_trusted_certificate /etc/letsencrypt/live/dev.biuro.lv/ca-bundle.pem;
# ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3;
# ssl_prefer_server_ciphers on;
......@@ -87,40 +138,49 @@ server {
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name dev.biuro.ee;
add_header Strict-Transport-Security "max-age=31536000; includeSubdomains";
ssl_session_cache shared:SSL:20m;
ssl_session_timeout 10m;
#
#
#server {
# listen 80;
# listen [::]:80;
# server_name dev.biuro.lt;
#
# root /var/www/html;
# index index.php;
#
# access_log /var/log/nginx/access.log;
# error_log /var/log/nginx/error.log;
#
# location / {
# try_files $uri $uri/ /index.php?$args;
# }
#
# location ~ \.php$ {
# try_files $uri =404;
# fastcgi_split_path_info ^(.+\.php)(/.+)$;
# fastcgi_pass wordpress:9000;
# fastcgi_index index.php;
# include fastcgi_params;
# fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
# fastcgi_param PATH_INFO $fastcgi_path_info;
# }
#
# location / {
# rewrite ^ https://$host$request_uri? permanent;
# }
#
# location ^~ /.well-known {
# allow all;
# root /data/letsencrypt/;
# }
#}
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_ciphers "ECDH+AESGCM:ECDH+AES256:ECDH+AES128:!ADH:!AECDH:!MD5;";
ssl_stapling on;
ssl_stapling_verify on;
resolver 8.8.8.8 8.8.4.4;
ssl_certificate /etc/letsencrypt/live/dev.biuro.ee/certificate.pem;
ssl_certificate_key /etc/letsencrypt/live/dev.biuro.ee/privkey.pem;
ssl_trusted_certificate /etc/letsencrypt/live/dev.biuro.ee/ca-bundle.pem;
# ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3;
# ssl_prefer_server_ciphers on;
# ssl_ciphers 'TLS-CHACHA20-POLY1305-SHA256:TLS-AES-256-GCM-SHA384:TLS-AES-128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256';
root /var/www/html;
index index.php;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
location / {
try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass wordpress:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
}
}
12,4
12,3
12,2
12,1
11,5
11,4
11,3
11,2
11,1
10,4
10,3
10,2
10,1
9,5
9,4
9,3
9,2
9,1
8,5
8,4
8,3
8,2
8,1
7,5
7,4
7,3
7,2
7,1
6,5
6,4
6,3
6,2
6,1
5,6
5,5
5,4
5,3
5,2
5,1
4,3
4,2
4,1
3,6
3,5
3,4
3,3
3,2
3,1
2,8
2,7
2,6
2,5
2,4
2,3
2,2
2,1
1,3
1,2
1,1
0,439
0,408
0,376
0,322
0,243
0,9
0,310
0,305
5,0
6,0
8,0
7,0
9,0
10,0
21,0
20,0
22,0
19,0
16,0
15,0
14,0
13,0
12,0
11,0
17,0
18,0
34,0
33,0
35,0
36,0
42,0
41,0
40,0
39,0
38,0
37,0
24,0
23,0
25,0
26,0
32,0
31,0
30,0
29,0
28,0
27,0
3,0
1,0
2,0
4,0
0,308
0,304
0,303
0,302
0,307
0,12
0,438
0,10
0,8
0,0
0,433
0,300
0,432
0,299
0,431
0,298
0,430
0,297
0,429
0,296
0,428
0,295
0,427
0,294
0,426
0,293
0,425
0,292
0,424
0,291
0,423
0,290
0,422
0,289
0,421
0,288
0,420
0,287
0,419
0,286
0,418
0,285
0,417
0,284
0,416
0,283
0,415
0,282
0,414
0,281
0,413
0,280
0,412
0,279
0,411
0,278
0,410
0,277
0,409
0,276
0,407
0,275
0,406
0,274
12,5
12,6
12,8
13,1
13,3
13,4
14,2
14,4
14,5
14,7
14,8
14,10
14,12
14,13
14,15
14,16
14,18
14,19
14,21
14,23
14,24
14,26
14,27
14,29
14,31
14,32
15,2
15,3
15,5
16,1
16,3
16,5
16,6
17,1
17,2
17,4
18,1
18,2
18,4
19,1
19,3
19,4
20,2
20,4
21,1
21,3
21,4
21,6
21,8
22,1
22,3
22,4
22,6
23,1
23,2
23,4
23,5
24,2
24,3
24,5
25,2
25,3
25,5
26,1
26,3
27,1
27,2
27,4
27,5
28,2
28,3
28,5
28,7
28,8
29,2
29,3
30,1
30,3
30,4
31,1
31,2
31,4
31,5
32,2
32,4
32,5
32,7
33,1
33,3
33,5
34,1
34,3
34,4
35,1
35,3
35,4
36,1
36,2
36,4
37,1
37,3
37,5
38,1
38,3
38,4
38,6
38,8
39,1
39,3
39,4
40,2
40,3
40,5
2,8
42,7
42,6
41,2
41,3
41,5
42,1
42,3
42,5
42,6
42,7
42,4
42,3
42,2
42,1
42,0
41,5
41,4
41,3
41,2
41,1
41,0
40,4
40,3
40,2
40,1
40,0
39,4
39,3
39,2
39,1
39,0
38,8
38,7
38,6
38,5
38,4
38,3
38,2
38,1
38,0
37,5
37,4
37,3
37,2
37,1
37,0
36,4
36,3
36,2
36,1
36,0
35,5
35,4
35,3
35,2
35,1
35,0
2,7
34,5
34,4
34,3
34,2
34,1
34,0
33,5
33,4
33,3
33,2
33,1
33,0
30,5
32,7
32,6
32,5
32,4
32,3
32,2
32,1
32,0
31,5
31,4
31,3
31,2
0,439
0,438
31,1
31,0
30,4
30,3
30,5
30,2
30,1
30,0
29,4
29,3
29,2
29,1
29,0
2,6
28,8
28,7
28,6
28,5
28,4
28,3
28,2
28,1
28,0
27,5
27,4
27,3
27,2
27,1
27,0
26,4
26,3
26,2
26,1
26,0
25,5
25,4
25,3
25,2
25,1
25,0
24,5
24,4
24,3
24,2
24,1
24,0
23,5
23,4
23,3
23,2
23,1
23,0
21,8
21,7
21,6
14,32
14,31
22,7
22,6
22,5
22,4
22,3
22,2
22,1
22,0
21,7
21,5
21,4
21,3
21,2
21,1
21,0
20,4
20,3
20,2
20,1
20,0
19,4
19,3
19,2
19,1
19,0
18,4
18,3
18,2
18,1
18,0
17,5
17,4
17,3
17,2
17,1
17,0
14,30
14,29
14,28
14,27
14,26
14,25
14,24
14,23
14,22
14,21
14,20
14,19
14,18
14,17
14,16
14,15
14,14
14,13
14,12
14,11
14,10
14,9
14,8
14,7
14,6
14,5
0,437
0,436
0,435
0,434
0,433
0,432
0,431
0,430
0,429
0,428
0,427
0,426
0,425
0,424
0,423
0,422
0,421
0,420
0,419
0,418
0,417
0,416
0,415
0,414
0,413
0,412
0,411
0,410
0,409
0,408
0,407
0,406
0,405
0,404
0,403
0,402
0,401
0,400
0,399
0,398
0,397
0,396
0,395
0,394
0,393
0,392
0,391
0,390
0,389
0,388
0,387
0,386
0,385
0,384
0,383
0,382
0,381
0,380
0,379
0,378
0,377
0,376
0,375
0,374
0,373
0,372
0,371
0,370
0,369
0,368
0,367
0,366
0,365
0,364
0,363
0,362
0,361
0,360
0,359
0,358
0,357
0,356
0,355
0,354
0,353
0,352
0,351
0,350
0,349
0,348
2,5
2,4
0,347
0,346
17,3
16,7
16,6
16,5
16,4
16,3
16,2
0,345
16,1
16,0
0,344
0,343
15,5
15,4
15,3
15,2
0,342
15,1
15,0
0,341
0,340
14,4
14,30
14,28
14,25
14,22
14,20
14,17
14,14
14,11
14,9
14,6
14,3
14,2
0,339
14,1
14,0
0,338
0,337
13,4
13,3
13,2
0,336
13,1
13,0
0,335
0,334
12,8
12,7
12,6
12,5
12,4
12,3
12,2
0,333
12,1
12,0
0,332
0,331
11,5
11,4
11,3
11,2
0,330
11,1
11,0
0,329
0,328
10,4
10,3
10,2
0,327
10,1
10,0
0,326
0,325
9,5
9,4
9,3
9,2
0,324
9,1
9,0
0,323
0,322
0,321
8,5
8,4
8,3
8,2
0,320
8,1
8,0
0,319
0,318
7,5
7,4
7,3
7,2
0,317
7,1
7,0
6,5
6,4
6,3
6,2
6,1
6,0
5,6
5,5
5,4
5,3
5,2
5,1
5,0
4,3
4,2
4,1
3,6
3,5
3,4
3,3
3,2
3,1
2,2
1,2
0,243
1,1
1,3
2,1
2,3
0,9
0,310
0,305
3,0
1,0
2,0
4,0
0,308
0,304
0,303
0,302
0,307
0,12
0,10
0,8
0,0
0,300
0,299
0,298
0,297
0,296
0,295
0,294
0,293
0,292
0,291
0,290
0,289
0,288
0,287
0,286
0,285
0,284
0,283
0,282
0,281
0,280
0,279
0,278
0,277
0,276
0,275
0,274
0,405
0,273
0,404
0,272
0,403
0,271
0,402
0,270
0,401
0,269
0,400
0,268
0,399
0,267
0,398
0,266
0,397
0,265
0,396
0,264
0,395
0,263
0,394
0,262
0,393
0,261
0,392
0,260
0,391
0,259
0,390
0,258
0,389
0,257
0,388
0,256
0,387
0,255
0,386
0,254
0,385
0,253
0,384
0,252
0,383
0,251
0,382
0,250
0,381
0,249
0,380
0,248
0,379
0,247
0,378
0,246
0,377
0,245
0,244
0,375
0,242
0,374
0,241
0,373
0,240
0,372
0,239
0,371
0,238
0,370
0,237
0,369
0,236
0,368
0,235
0,367
0,234
0,366
0,233
0,365
0,232
0,364
0,231
0,363
0,230
0,362
0,229
0,361
0,228
0,360
0,227
0,359
0,226
0,358
0,225
0,357
0,224
0,356
0,223
0,355
0,222
0,354
0,221
0,353
0,220
0,352
0,219
0,351
0,218
0,437
0,217
0,436
0,216
0,435
0,215
0,350
0,214
0,349
0,213
0,348
0,212
0,434
0,211
0,347
0,210
0,346
0,209
0,345
0,208
0,344
0,207
0,343
0,206
0,342
0,205
0,341
0,204
0,340
0,203
0,339
0,202
0,338
0,201
0,337
0,200
0,336
0,199
0,335
0,198
0,334
0,197
0,333
0,196
0,332
0,195
0,331
0,194
0,330
0,193
0,329
0,192
0,328
0,63
0,327
0,62
0,326
0,61
0,325
0,60
0,324
0,59
0,323
0,58
0,321
0,57
0,320
0,56
0,319
0,55
0,318
0,54
0,317
0,53
0,316
0,52
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment