Third party application which I'm trying to integrate, asking to put a file inside a .well-known
folder. how can I make that file accessible from URL? (example.com/.well-known/token.txt
). site is deployed as a gitlab page. every attempt I tried gives 404 error.
Asked
Active
Viewed 682 times
7

Oshan Wisumperuma
- 1,808
- 1
- 18
- 32
1 Answers
6
If you put your ".well-known" folder inside the "static" folder it should get deployed to the root of your website as you expect.

Thomas Vochten
- 380
- 1
- 4
- 12
-
you saved my day – Rakesh Mothukuri Dec 02 '19 at 20:28
-
3My site redirects to my 404 page. Do I need to do something to expose the .well-known folder? It works when I put it in the root of the site. – Ken Bonny Feb 08 '20 at 11:46