Next.js项目部署,使用Nginx和pm2

Posted T.Y.Bao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Next.js项目部署,使用Nginx和pm2相关的知识,希望对你有一定的参考价值。

概述


只有一台服务器,所以上图服务都都在一个云服务器上。其中nginx 分别在用户和Next服务之间代理、在Next和后台之间代理。

常规的前台页面不需要这样做,例如Vue中直接把build之后的dist文件拷贝到nginxhtml目录并配置nginx指向即可,但是Next可以做到服务端渲染(SSR)所以Next的前台页面实际上是一个nodejs服务,所以nginx在这里是代理用户请求,proxy_pass到这个nodejs服务上。
而前后台之间的nginx代理属于反向代理,一般也通过proxy_passrewrite路径进行代理,我没配置这个。

Next.js配置

在需要SSRpage中需要添加 getStaticPropsgetStaticProps这些function只能写在page文件夹中,不可以在components中用),注意可以设置revalidate定时重新build页面,这样页面也可以定期更新,如下:


export async function getStaticProps() 
	//后台取数据
    const result = await queryTimelineList()
    // console.log(result)
    return 
        props: 
            timelineData: result.data,
        ,
        // 重新绘制页面时长 1200 ,单位秒
        revalidate: 1200
    ;

另外,注意在动态路由的page中,需要设置fallbacktrue,且页面中要增加对fallbackfalse的处理,否则build的时候会报错,如下 一个名为 [postId].js的page:

const PostId = (postId, postDetail, recentPosts,curTags) => 


    const router = useRouter()
	// 注意,这里要处理
    if (router.isFallback) 
        return <div>Loading...</div>
    
    ...



// Fetch data at build time
export async function getStaticProps(context) 
    const postId = context.params.postId

    const
        [postDetailResult,
            recentPostsResult,
            curPostTagsResult] = await Promise.all([
                queryPostDetailByPostId(postId),
                queryRecentPostList(),
                queryTagListByPostId(postId)
            ]
        )
    return 
        props: 
            postId: postId,
            postDetail: postDetailResult?.data,
            recentPosts: recentPostsResult?.data,
            curTags: curPostTagsResult?.data
        ,
        revalidate: 300
    ;


// Specify dynamic routes to pre-render pages based on data.
// The HTML is generated at build time and will be reused on each request.
export async function getStaticPaths() 
    const postIdsResult = await queryPostIdList();
    const postIdList = postIdsResult.data

    return 
        paths: postIdList.map((postId) => 
        	// 这里如果传的是数字会报错,必须转为字符串
            return params: postId: postId.toString()
        ),
        // 设置为true
        fallback: true,
    ;


Nginx配置

完整的nginx.conf配置文件如下:


#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events 
    worker_connections  1024;



http 
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    

    # HTTPS server
    #
    server 
        listen       443 ssl;
        server_name  btyhub.site, www.btyhub.site;
		# ssl两个文件,放在 nginx的conf目录中
        ssl_certificate      btyhub.site_bundle.pem;
        ssl_certificate_key  btyhub.site.key;

        ssl_session_cache    shared:SSL:1m;
        ssl_session_timeout  5m;

        ssl_ciphers  HIGH:!aNULL:!MD5;
        ssl_prefer_server_ciphers  on;
		# 代理到Next的服务,默认3000端口,也可以在start的时候指定
        location / 
            proxy_pass    http://127.0.0.1:3000/;
        
		
    
    # 监听普通http请求,重写至https
	server
		listen 80;
		server_name btyhub.site, www.btyhub.site;
		rewrite ^(.*)$ https://$host$1 permanent;
	



pm2启动

ps:除了使用pm2启动Next服务外,也可以npm run build之后直接nohup npm run start
pm2官网文档

首先要安装node环境,安装完了将命令添加到全局bin中:

# /usr/local/node是我的node安装目录
ln -s /usr/local/node/bin/npm /usr/local/bin/
ln -s /usr/local/node/bin/npx /usr/local/bin/
ln -s /usr/local/node/bin/node /usr/local/bin/

其次,全局安装pm2 并加入全局bin:

npm install -g pm2
ln -s /usr/local/node/bin/pm2 /usr/local/bin/

测试,是否安装成功:

pm2 -version

运行next服务

  1. 需要将项目源文件上传至云服务器:

  2. 运行npm run build

  3. 运行pm2 start --name yourappname npm -- start

后记:
域名配置完要隔几天才可以给网站备案,备案之后才可以通过域名访问,在这之前可以先用ip地址测试。

nuxt 部署上线

参考技术A 参考文章链接 :

next.js、nuxt.js等服务端渲染框架构建的项目部署到服务器,并用PM2守护程序 - 每天一探 - SegmentFault 思否

1.安装NGINX

2.node

3.npm

4.pm2

5.将完成好的nuxt项目打包(npm run build)

        .nuxt

        static(可以不传)

        nuxt.config.js

        package.json

上传到服务器对应的文件夹下

运行npm install 安装package里的依赖

运行npm start 就可以运行起来nuxt的服务渲染了

6.配置NGINX 

     #nuxt config

    upstream nodenuxt

        server 127.0.0.1:3000; #nuxt

        keepalive 64;

   

    server

        listen 3001 ;

        server_name  ****;

        location /

            proxy_http_version 1.1;

            proxy_set_header Upgrade $http_upgrade;

            proxy_set_header Connection "upgrade";

            proxy_set_header Host $host;

            proxy_set_header X-Nginx-Proxy true;

            proxy_cache_bypass $http_upgrade;

            proxy_pass http://nodenuxt; #

       

 

7.开启守护进程

以上是关于Next.js项目部署,使用Nginx和pm2的主要内容,如果未能解决你的问题,请参考以下文章

Next.js +Egg.js+React项目部署详解

使用现有函数将 Next.js 应用部署到 Firebase Functions

nuxt 部署上线

Next.js 应用在生产环境中频繁重新加载

如何使用 NginX + Next.JS + Apollo GraphQL 获取用户的 IP 地址

Next.js 和 Ant Design Dragger:已部署实例上的文件上传失败