All original credit goes to @GetVladimir.
(WORK IN PROGRESS)
All original credit goes to @GetVladimir.
(WORK IN PROGRESS)
sudo mtr -Twrc 10 vercel.com and share the full output. You can get mtr by running brew install mtr on macOS and sudo apt-get install mtr on Ubuntu. We don't have an alternative for Windows at the moment.sudo mtr -Twrc 10 secondary-1.vercel-infra.com and share the full output.| { | |
| "version": 2, | |
| "rewrites": [ | |
| { | |
| "source": "/service-worker.js", | |
| "destination": "static/service-worker.js" | |
| }, | |
| {"source": "/favicon.ico", "destination": "assets/icons/favicon.ico"} | |
| ], | |
| "headers": [ |
| now dns add odete.com.br '@' TXT google-site-verification=codehere | |
| now dns add odete.com.br '@' MX ASPMX.L.GOOGLE.COM 1 | |
| now dns add odete.com.br '@' MX ALT1.ASPMX.L.GOOGLE.COM 5 | |
| now dns add odete.com.br '@' MX ALT2.ASPMX.L.GOOGLE.COM 5 | |
| now dns add odete.com.br '@' MX ALT3.ASPMX.L.GOOGLE.COM 10 | |
| now dns add odete.com.br '@' MX ALT4.ASPMX.L.GOOGLE.COM 10 | |
| now dns add odete.com.br auth CNAME odete-249213.firebaseapp.com | |
| now dns add odete.com.br 14810097 CNAME sendgrid.net | |
| now dns add odete.com.br s1._domainkey CNAME s1.domainkey.u14810097.wl098.sendgrid.net |
| # Query any record | |
| dig A paulogdm.com | |
| dig NS paulogdm.com | |
| dig CNAME www.paulogdm.com | |
| # Query any record using a specific DNS resolver | |
| dig A paulogdm.com @1.1.1.1 | |
| dig A paulogdm.com @8.8.8.8 | |
| # Query record with a trace of the DNS resolution |
| // a.js | |
| module.exports = async (req, res) => { | |
| await middleware(req, res) | |
| } | |
| // b.js | |
| module.exports middleware( async (req, res) => { | |
| // ... | |
| }) |
| dig bitauth.com MX &&\ | |
| dig bitauth.com MX @1.1.1.1 &&\ | |
| dig bitatuh.com MX @8.8.8.8 &&\ | |
| nslookup -q=MX bitauth.com &&\ | |
| echo "end of set" |
| { | |
| "version": 2, | |
| "alias": ["shortcutly.com"], | |
| "routes": [ | |
| { | |
| "src": "/(.*)", | |
| "status": 301, | |
| "headers": { "Location": "www.shortcutly.com/$1 " } | |
| } | |
| ] |
| { | |
| "version": 2, | |
| "name": "nextjs", | |
| "builds": [{ | |
| "src": "package.json", | |
| "use": "@now/static-build", | |
| "config": { "newPipeline": true } | |
| }] | |
| } |
| // taken from https://spectrum.chat/thread/3d15e59b-a893-494a-b8a8-a8cc391094d6 | |
| const {send} = require('micro') | |
| const axios = require('axios') | |
| const fs = require('fs') | |
| const sharp = require('sharp') | |
| const memoize = require('memoizee') |