Frontend path: HTML + CSS
Dec 13, 2022 | 10019 views
- How to make a horizontal scroll flex box
Comments: 0Tags: Linux InstallGuide Django Web-frontend Python Storage HPC Docker k8s Bootstrap
Dec 13, 2022 | 10019 views
- How to make a horizontal scroll flex box
Comments: 0Jul 28, 2022 | 1358 views
Note
July 28, 2022
Aug 9, 2022
Aug 19, 2022
Aug 31, 2022
Module 13 of Frontend couse : https://scrimba.com/learn/frontend#
Sep 3, 2022
Sep 5, 2022
Sep 7, 2022
Oct 24, 2022
Oct 25, 2022
2 Nov, 2022
8 Nov, 2022
10 Nov, 2022
14 Nov, 2022
Nov 10, 2021 | 1493 views
limit_req_zone $binary_remote_addr zone=ip:10m rate=5r/s;
server {
listen 80;
location / {
limit_req zone=ip burst=12 delay=8;
proxy_pass http://website;
}
}
Refer to Rate Limiting with NGINX and NGINX Plus
Comments: 0Oct 23, 2021 | 1358 views
Load testing website using GKE.
Please refer to qwiklabs Distributed Load Testing Using Kubernetes
Oct 07, 2021 | 4466 views
Code example, whitelist keywords in URI for specific IP
server {
#...
location / {
set $deny_access off;
if ($remote_addr != "specific-ip-here") {
set $deny_access on;
}
if ($uri ~ "^/(keyword1|keyword2)/" ) {
set $deny_access on$deny_access;
}
# add_header X-debug-message "deny_access: $deny_access" always; # debug
if ($deny_access = onon) { return 404; }
# ...
}
#...
}
Reference: