Skip to content

Commit 72e097c

Browse files
committed
daily
1 parent 52c4a7c commit 72e097c

File tree

7 files changed

+15
-5
lines changed

7 files changed

+15
-5
lines changed

Onboarding-HU.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Kategóriánként **egy** szolgáltató.
4343
**[Cheapsslsecurity.com](https://cheapsslsecurity.com/rapidssl/rapidsslcertificate.html),
4444
[SSLMate](https://sslmate.com/),
4545
DigiCert,
46-
Certum :eu:
46+
Certum :eu:**
4747
1. CDN (fájl kiszolgáló hálózat) szolgáltató:
4848
**AWS, KeyCDN :eu:, Akamai from Selectel**
4949
1. Tranzakciós email kiküldő:

Onboarding.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ One per category.
3636
**[Cheapsslsecurity.com](https://cheapsslsecurity.com/rapidssl/rapidsslcertificate.html),
3737
[SSLMate](https://sslmate.com/),
3838
DigiCert,
39-
Certum :eu:
39+
Certum :eu:**
4040
1. CDN provider:
4141
**AWS, KeyCDN :eu:, Akamai from Selectel**
4242
1. Transactional email provider:

monitoring/syslog-errors-infrequent.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Filter_failures()
2121
|alert|unknown|unable|miss[^y]|except|disable|invalid|[^e]fault|cannot|denied\
2222
|broken|exceed|too big|too many|unsafe|unsolicited|limit reach|unhandled|traps\
2323
|\\bbad\\b|corrupt|but got status|oom-killer|false|unreach|[^c]oops|ignor[ei]\
24-
|prohibit|timeout|blocked|unavailable|over quota|unconfigured"
24+
|prohibit|timeout|blocked|unavailable|over quota|unconfigured|wrong"
2525
}
2626

2727
LOG_EXCERPT="$(mktemp --suffix=.syslog)"

monitoring/syslog-errors.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Filter_failures()
2121
|alert|unknown|unable|miss[^y]|except|disable|invalid|[^e]fault|cannot|denied\
2222
|broken|exceed|too big|too many|unsafe|unsolicited|limit reach|unhandled|traps\
2323
|\\bbad\\b|corrupt|but got status|oom-killer|false|unreach|[^c]oops|ignor[ei]\
24-
|prohibit|timeout|blocked|unavailable|over quota|unconfigured"
24+
|prohibit|timeout|blocked|unavailable|over quota|unconfigured|wrong"
2525
}
2626

2727
LOG_EXCERPT="$(mktemp --suffix=.syslog)"

mysql/SQL-Performance.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,15 @@ innodb_flush_method = O_DIRECT
2020
innodb_thread_concurrency = {CPU CORES - 1}
2121
```
2222

23+
```sql
24+
-- Recommended innodb_buffer_pool_size
25+
SELECT CEILING(Total_InnoDB_Bytes*1.6/POWER(1024, 3)) RIBPS
26+
FROM
27+
(SELECT SUM(data_length+index_length) Total_InnoDB_Bytes
28+
FROM information_schema.tables
29+
WHERE ENGINE='InnoDB') A;
30+
```
31+
2332
### Slow log analysis
2433

2534
- Install Percona Tools: `apt-get install percona-toolkit`

webserver/CloudFlare.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ RewriteCond "%{HTTP:X-Forwarded-Proto}" "!=https" [OR]
9696

9797
Restrict access
9898

99-
- In Apache `RemoteIPTrustedProxyList`
99+
- In Apache `RemoteIPTrustedProxyList` and `Require expr "%{REMOTE_ADDR} != %{CONN_REMOTE_ADDR}"`
100100
- In Linux firewall on port 80 and 443 using an ipset
101101

102102
SSL encryption toward Cloudflare edges

webserver/wp-install/wp-cron-cli.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ export REMOTE_ADDR="127.0.0.1"
7979
#export SERVER_SOFTWARE="Apache"
8080
#export SERVER_SOFTWARE="nginx"
8181
#export SERVER_NAME="<DOMAIN>"
82+
export SERVER_PORT="443"
8283

8384
# Request data
8485
export REQUEST_METHOD="GET"

0 commit comments

Comments
 (0)