摘要:
Need to enable custom domain name and encryption in transit for an application running behind an Application Load Balancer? Use AWS Route 53 to create 阅读全文
摘要:
If we want ALB only accpet traffic from CloudFront, NOT from public www. Then we can add a customer head in CloudFront. In ALB, we set conditional rul 阅读全文
摘要:
import { json } from "remix"; import path from "path"; import fs from "fs/promises"; import parseFrontMatter from "front-matter"; import invariant fro 阅读全文
摘要:
Relational database running on MySQL must be migrated to AWS and must be highly avaiable? Use RDS MySQL and conigure a multi-AZ standby node for HA. A 阅读全文
摘要:
const getGlobalThis = () => { if (typeof self !== 'undefined') return self if (typeof window !== 'undefined') return window if (typeof global !== 'und 阅读全文
摘要:
import React from "react"; import { motion } from "framer-motion"; const svgVariants = { start: { opacity: 0, pathLength: 0 }, finished: { opacity: 1, 阅读全文
摘要:
CloudTrail You can use CloudTrail to stream log into CloudWatch Logs Then in the CloudWatch, you can setup Metric Filters based on certain condition, 阅读全文
摘要:
SQL injection (SQLi) is a vulnerability that allows the attacker to make arbitrary queries to an an application’s SQL database. Depending on circumsta 阅读全文
摘要:
Cross-Site Scripting (XSS) is a vulnerability that allows the attacker to inject their own JavaScript code into a vulnerable website. This gives the a 阅读全文
摘要:
Add functionality to objects or classes without inheritance Although we can add functionality iwht mixins without inheritance, mixins themselves can u 阅读全文