Top

Tags: Linux InstallGuide Django Web-frontend Python Storage HPC Docker k8s Bootstrap

Frontend path: HTML + CSS

Dec 13, 2022 | 10019 views

#Web-frontend


- How to make a horizontal scroll flex box

Comments: 0

12 hours freeCodeCamp React course

Jul 28, 2022 | 1358 views

#React #freeCodeCamp

Basic React Course

Note

July 28, 2022

Aug 9, 2022

Aug 19, 2022

Aug 31, 2022


Advance React Course

    Module 13 of Frontend couse : https://scrimba.com/learn/frontend#

Note

Sep 3, 2022

Sep 5, 2022

Sep 7, 2022


Roadmap from freecodecamp: How to Learn React — A roadmap from beginner to advanced 


Oct 24, 2022

Oct 25, 2022

2 Nov, 2022

8 Nov, 2022

10 Nov, 2022

14 Nov, 2022



Comments: 0

Setting Nginx Rate Limiting

Nov 10, 2021 | 1493 views

#Web-frontend


Two-Stage Rate Limiting

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: 0

Distributed Load Testing Using Kubernetes

Oct 23, 2021 | 1358 views

#Kubernetes

Load testing website using GKE.

Please refer to qwiklabs Distributed Load Testing Using Kubernetes 


Comments: 0

Nginx whitelist specific IP

Oct 07, 2021 | 4466 views

#Web-frontend


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:

Comments: 0