首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Https和443端口nextjs

Https和443端口nextjs
EN

Stack Overflow用户
提问于 2020-09-05 16:32:37
回答 1查看 958关注 0票数 1

你好,我想在https和443端口上运行我的nextjs项目,但是我做不到。有谁能帮忙解决这个问题吗?

EN

回答 1

Stack Overflow用户

发布于 2020-09-05 17:32:44

用法

代码语言:javascript
复制
Install package:

    `npm install redirect-ssl`

    Require and use redirect-ssl. Make sure to use this middlware as the first in your middleware chain (if using express see middleware chain:

    import redirectSSL from 'redirect-ssl'

// or
const redirectSSL = require('redirect-ssl')

    enter code here

// Add middleware
app.use(redirectSSL)

// Using custom options

app.use(redirectSSL.create({ redirectPort: 8443 }))
Disable for non-production or localhost

If you want to disable on localhost, use the exclude option:

app.use(redirectSSL.create({
   exclude: ['localhost']
}))
Only enable in production environments:

app.use(redirectSSL.create({
  enabled: process.env.NODE_ENV === 'production'
}))

Default: 443
Redirect users to this port for HTTPS. (:443 is omitted from URL as is default for https:// schema)

代码语言:javascript
复制
Using with Nuxt.js
Add the redirect-ssl to the serverMiddleware array within in the nuxt.config.js file is the preferred usage:

import redirectSSL from 'redirectSSL'

export default {
  serverMiddleware: [
    redirectSSL.create({
      enabled: process.env.NODE_ENV === 'production'
     }),
  ]
}
票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/63756175

复制
相关文章

相似问题

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