首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >您能将混合运行应用部署到子文件夹吗?

您能将混合运行应用部署到子文件夹吗?
EN

Stack Overflow用户
提问于 2022-04-26 12:15:24
回答 1查看 606关注 0票数 0

通常,对于nodejs,我会在子文件夹中运行一个应用程序,使用:

代码语言:javascript
复制
app.use(config.baseUrl, router);

然而,对于混合,它被抽象为createRequestHandler:

代码语言:javascript
复制
app.all(
  "*",
  MODE === "production"
    ? createRequestHandler({ build: require(BUILD_DIR),  })
    : (...args) => {
        purgeRequireCache();
        const requestHandler = createRequestHandler({
          build: require(BUILD_DIR),
          mode: MODE,
        });
        return requestHandler(...args);
      }
);

有任何方法配置基本url吗?完整的server.ts:

代码语言:javascript
复制
import path from "path";
import express, { RequestHandler, Request, Response, NextFunction, } from "express";
import compression from "compression";
import morgan from "morgan";
import { createRequestHandler } from "@remix-run/express";

const app = express();

const globalExcludePaths = (req: Request, res: Response, next: NextFunction) => {
  const paths = [
    '/self-service*'
  ];

  const pathCheck = paths.some(path => path === req.path);

  if (!pathCheck) {
    console.log('Valid path')
    next()
  }
  else {
    console.log('Ignoring path')
  }
}

app.use((req, res, next) => {
  globalExcludePaths(req, res, next);
})

app.use((req, res, next) => {
  // helpful headers:
  res.set("Strict-Transport-Security", `max-age=${60 * 60 * 24 * 365 * 100}`);

  // /clean-urls/ -> /clean-urls
  if (req.path.endsWith("/") && req.path.length > 1) {
    const query = req.url.slice(req.path.length);
    const safepath = req.path.slice(0, -1).replace(/\/+/g, "/");
    res.redirect(301, safepath + query);
    return;
  }
  next();
});

app.use(compression());

// http://expressjs.com/en/advanced/best-practice-security.html#at-a-minimum-disable-x-powered-by-header
app.disable("x-powered-by");

// Remix fingerprints its assets so we can cache forever.
app.use(
  "/build",
  express.static("public/build", { immutable: true, maxAge: "1y" })
);

// Everything else (like favicon.ico) is cached for an hour. You may want to be
// more aggressive with this caching.
app.use(express.static("public", { maxAge: "1h" }));

app.use(morgan("tiny"));

const MODE = process.env.NODE_ENV;
const BUILD_DIR = path.join(process.cwd(), "build");

app.all(
  "*",
  MODE === "production"
    ? createRequestHandler({ build: require(BUILD_DIR),  })
    : (...args) => {
        purgeRequireCache();
        const requestHandler = createRequestHandler({
          build: require(BUILD_DIR),
          mode: MODE,
        });
        return requestHandler(...args);
      }
);

const port = process.env.PORT || 3000;

app.listen(port, () => {
  // require the built app so we're ready when the first request comes in
  require(BUILD_DIR);
  console.log(`✅ app ready: http://0.0.0.0:${port}`);
});

function purgeRequireCache() {
  // purge require cache on requests for "server side HMR" this won't let
  // you have in-memory objects between requests in development,
  // alternatively you can set up nodemon/pm2-dev to restart the server on
  // file changes, we prefer the DX of this though, so we've included it
  // for you by default
  for (const key in require.cache) {
    if (key.startsWith(BUILD_DIR)) {
      // eslint-disable-next-line @typescript-eslint/no-dynamic-delete
      delete require.cache[key];
    }
  }
}
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2022-05-20 20:41:42

看看remix-mount-routes。这允许您将Remix应用程序挂载到根以外的基本路径。

https://github.com/kiliman/remix-mount-routes

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/72013781

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档