fastn multiserve #1526
Closed
amitu
started this conversation in
Ideas & RFCs
Replies: 1 comment
-
No longer in the scope of this project. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
If any request comes to any folder, which contains
FASTN.ftd
, we serve the request using thatFASTN.ftd
.fastn
is running inCWD
, and request like/
will go toCWD/index.ftd
, but if the request is for/render/<slide-id>/
,fastn
will encounterFASTN.ftd
in therender/<slide-id>/
folder, and will serve that. Effectivelyfastn
will create a new config object usingCWD/render/<slide-id>/
as root, and will serve the request using thatconfig
.We will have to do base handling correctly. So static files would be
/render/<slide-id>/-/<package-name>/file.png
etc.Beta Was this translation helpful? Give feedback.
All reactions