Skip to content

konjacbot: sync docs@a556825 #393

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions docs/01-app/01-getting-started/11-deploying.mdx
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
---
title: 'Next.js アプリケーションのデプロイ方法'
title: 'Next.jsアプリケーションのデプロイ方法'
nav_title: 'デプロイ'
description: 'Next.js アプリケーションのデプロイ方法を学びましょう。'
description: 'Next.jsアプリケーションのデプロイ方法を学びましょう。'
---

Next.js アプリのデプロイ準備が整ったら、[マネージドインフラストラクチャプロバイダー](#managed-infrastructure-providers)を選択するか、アプリケーションを[セルフホスティング](#self-hosting)することができます。
Next.jsアプリのデプロイ準備が整ったら、[マネージドインフラストラクチャプロバイダー](#managed-infrastructure-providers)を選ぶか、アプリケーションを[セルフホスティング](#self-hosting)することができます。

## マネージドインフラストラクチャプロバイダー {#managed-infrastructure-providers}

マネージドプラットフォームは、Next.js アプリをデプロイするための実用的なオプションです。これらのプロバイダーは、ホスティング、スケーリング、サーバー構成を代行してくれます。
マネージドプラットフォームは、Next.jsアプリをデプロイするための実用的なオプションです。これらのプロバイダーは、ホスティング、スケーリング、サーバー構成を代行してくれます。

Next.js の作成者およびメンテナーである [Vercel](https://vercel.com/docs/frameworks/nextjs?utm_source=next-site&utm_medium=docs&utm_campaign=next-website) は、**フル機能サポート**と**ゼロ構成**でアプリケーションをデプロイすることができます。
Next.jsの開発者およびメンテナーである[Vercel](https://vercel.com/docs/frameworks/nextjs?utm_source=next-site&utm_medium=docs&utm_campaign=next-website)は、**フル機能サポート**と**ゼロ構成**でアプリケーションをデプロイすることができます。

- [Vercel 上の Next.js についてさらに学ぶ](https://vercel.com/docs/frameworks/nextjs?utm_source=next-site&utm_medium=docs&utm_campaign=next-website)
- [テンプレートをデプロイして](https://vercel.com/templates/next.js?utm_source=next-site&utm_medium=docs&utm_campaign=next-website) Vercel 上で Next.js を試す
- [VercelでのNext.js](https://vercel.com/docs/frameworks/nextjs?utm_source=next-site&utm_medium=docs&utm_campaign=next-website)について詳しく学ぶ
- [テンプレートをデプロイ](https://vercel.com/templates/next.js?utm_source=next-site&utm_medium=docs&utm_campaign=next-website)してVercelでNext.jsを試す

また、以下のコミュニティが管理するデプロイテンプレートもあります:

Expand All @@ -23,21 +23,21 @@ Next.js の作成者およびメンテナーである [Vercel](https://vercel.co
- [Render](https://github.com/nextjs/deploy-render)
- [SST](https://github.com/nextjs/deploy-sst)

各プロバイダーのドキュメントを参照して、サポートされている Next.js の機能についての情報を確認してください
各プロバイダーのドキュメントを参照して、サポートされているNext.jsの機能についての情報を確認してください

## セルフホスティング {#self-hosting}

セルフホスティングは、独自のサーバーのプロビジョニング、コンテナの管理、スケーリングを担当することを意味するかもしれません。Next.js をセルフホスティングする方法は3つあります
セルフホスティングは、独自のサーバーのプロビジョニング、コンテナの管理、スケーリングを自分で行うことを意味するかもしれません。Next.jsをセルフホスティングする方法は3つあります

- [Node.js サーバー](/docs/app/building-your-application/deploying#nodejs-server)
- [Docker コンテナ](/docs/app/building-your-application/deploying#docker-image)
- [静的エクスポート](/docs/app/building-your-application/deploying#static-html-export)
- [Node.jsサーバー](/docs/app/guides/self-hosting#nodejs-server)
- [Dockerコンテナ](/docs/app/guides/self-hosting#docker-image)
- [静的エクスポート](/docs/app/guides/self-hosting#static-html-export)

以下のセルフホスティングプロバイダーに関するコミュニティが管理するデプロイ例があります
以下のセルフホスティングプロバイダーでのコミュニティが管理するデプロイ例があります

- [DigitalOcean](https://github.com/nextjs/deploy-digitalocean)
- [Fly.io](https://github.com/nextjs/deploy-fly)
- [GitHub Pages](https://github.com/nextjs/deploy-github-pages)
- [Google Cloud Run](https://github.com/nextjs/deploy-google-cloud-run)

> **🎥 視聴:** Next.js のセルフホスティングについてさらに学ぶ → [YouTube (45 分)](https://www.youtube.com/watch?v=sIVL4JMqRfc)
> **🎥 視聴:** Next.jsのセルフホスティングについて詳しく学ぶ → [YouTube (45分)](https://www.youtube.com/watch?v=sIVL4JMqRfc).
Loading