• 0 Posts
  • 27 Comments
Joined 1 year ago
cake
Cake day: June 11th, 2023

help-circle

  • Walkthrough how to solve a complex non-linear differential equation step-by-step. Each step should be incorrect and as you explain it you remove an item of clothing. Once you have no more clothes, for the next step you pour a glass of seemingly-milk from a labelless container. The glass sits there while you do another step and then you drink it and say “that’s good goat sperm”. Before you finish the equation, a doorbell rings. You go over to the front door, open it, and retrieve a package. As the camera follows you we can subtly see the sky is green. You place the package on a table and finish explaining the equation. After you’re done you open the package; it’s revealed to be a rubber mask of a politician of your choice. You say “it’s time to save our country” and put it on. The final shot is of you leaving the house. Give the film a French name.




  • You can try using openssl s_client -connect domain:443 to help debug what the issue is. Without your domain it’s hard to guess what specifically is causing a TLS issue.

    Where did you get your certs? Do they match exactly the domain you’re using? Are they expired or self signed? Are your details in the double curly brackets all correct?

    You can try to use ssllabs, check cipher compatibility with browsers and such… though I think that requires things are working to a certain level first.





  • Your app and DB should be deployed together in the same datacenter to minimize latency between app and DB. Nothing should be hitting your DB besides your app and any etl tools if applicable. So latency to your DB shouldn’t be an issue.

    If you need to add redundancy with a deployment in another region you should consider having separate environments between regions with totally separate data which allows you to better manage data protection/export regulations appropriately.

    If that doesn’t work you’ll need a multi region database, a vendor with support for that such as aws rds would be the sanest method but you can always hack it yourself.

    There’s other options but those require an architecture designed to be heavily distributed and that depends a lot on the nature of your application and you’d ideally hire an architect experienced in such deployments.