This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This redirects all users except me to a temporal website. | |
# Inspired from: https://stackoverflow.com/questions/293285/want-to-redirect-all-visitors-except-for-me | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteBase / | |
# Redirect all except allowed IP | |
# The HTTP:X-Forwarded-For is used when the site is behind a proxy or load balancer like CloudFlare, AWS Application Load Balancer, etc. | |
# The used ip should be the public ip of your router, use a website like "whats my public ip" to know this. | |
# In the case your site isn't behind proxies or load balancer, replace "HTTP:X-Forwarded-For" to "REMOTE_ADDR" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This dummy function is just to answer the following simple question: | |
// Do these new AWS Lambda Function URLs still suffer the same timeout issues that the API Gateway does? Namely 30s? | |
// Answer: According to my local testing I found they dont suffer the 30s limitation, which is pretty amazing. | |
exports.handler = async (event) => { | |
console.log(event) | |
let timeoutSeconds = +event.queryStringParameters.timeout | |
if (typeof timeoutSeconds !== 'number') { | |
timeoutSeconds = 40 |
OlderNewer