Configuration
@quik/http-express has no defaults/*.ts of its own — it reads the configuration declared by @quik/http. See
that module's Config Keys for the full generated table.
http.session.store(memory,file, orredis) selects the session store driver during this module'ssetup().filerequires thesession-file-storepeer dependency and readshttp.session.file.folder;redisrequiresconnect-redis/ioredisand readshttp.session.redis.*. CallQExpressEngine.setSessionStore(store)to override the driver manually instead.http.session.secret/http.session.ttlSecondsconfigure the Express session middleware regardless of driver.http.static.serve,http.static.path,http.static.folder,http.static.globalcontrol static file serving.http.static.singlePageApplication.enable/.indexFilecontrol the SPA fallback: HTML navigation requests without a file extension are rewritten to the index file, except underhttp.paths.apiandhttp.paths.docs.http.cookie.domain/http.cookie.secureare applied as defaults byQExpressContext.setCookie()/clearCookie(); endpoint code can override them per call.DOCS_BASE_PATH(http.paths.docs) is where OpenAPI docs are exposed when@quik/openapiis loaded — this module only registers the docs route, it does not own the config key.