[solved] Apple Pay verification on Meteor app

To verify Apple Pay it looks like I need to serve a static file in a folder called .well-known/. No luck with verifying it. I’m thinking a .well-known/ directory at the root level won’t work? Any ideas?

Did you try putting it inside public?

Stripe requires the .well-known folder to be at the root.

Example: your-domain.com/.well-known/apple-deleloper-merchantid-domain-association

Anything in public will be at the root. Application Structure | Meteor Guide

1 Like

Thank you! I didn’t think files in public were technically at the root.

1 Like