2018-01-30 15:40:52 +00:00
[![Deploy to now ](https://deploy.now.sh/static/button.svg )](https://deploy.now.sh/?repo=https://github.com/zeit/next.js/tree/master/examples/with-zones)
# Using multiple zones
2018-04-03 12:19:05 +00:00
## How to use
### Using `create-next-app`
Execute [`create-next-app` ](https://github.com/segmentio/create-next-app ) with [Yarn ](https://yarnpkg.com/lang/en/docs/cli/create/ ) or [npx ](https://github.com/zkat/npx#readme ) to bootstrap the example:
```bash
npx create-next-app --example with-zones with-zones-app
# or
yarn create next-app --example with-zones with-zones-app
```
### Download manually
Download the example [or clone the repo ](https://github.com/zeit/next.js ):
```bash
curl https://codeload.github.com/zeit/next.js/tar.gz/canary | tar -xz --strip=2 next.js-canary/examples/with-zones
cd with-zones
```
Install it and run:
```bash
npm install
# or
yarn
```
2018-05-26 10:11:09 +00:00
## The idea behind this example
2018-04-03 12:19:05 +00:00
2018-01-30 15:40:52 +00:00
With Next.js you can use multiple apps as a single app using it's multi-zones feature.
This is an example showing how to use it.
In this example, we've two apps: 'home' and 'blog'.
We also have a set of rules defined in `rules.json` for the proxy.
Now let's start two of our app using:
2018-03-14 08:09:46 +00:00
```bash
2018-01-30 15:40:52 +00:00
npm run home
npm run blog
2018-04-03 12:19:05 +00:00
# or
yarn home
yarn blog
2018-01-30 15:40:52 +00:00
```
Then start the proxy:
2018-03-14 08:09:46 +00:00
```bash
2018-01-30 15:40:52 +00:00
npm run proxy
2018-04-03 12:19:05 +00:00
# or
yarn proxy
2018-01-30 15:40:52 +00:00
```
Now you can visit http://localhost:9000 and access and develop both apps a single app.
### Proxy Rules
This is the place we define rules for our proxy. Here are the rules(in `rules.json` ) available for this app:
```json
{
"rules": [
2018-04-03 12:19:05 +00:00
{
"pathname": "/blog",
"method": ["GET", "POST", "OPTIONS"],
"dest": "http://localhost:5000"
},
{ "pathname": "/**", "dest": "http://localhost:4000" }
2018-01-30 15:40:52 +00:00
]
}
```
These rules are based on ZEIT now [path alias ](https://zeit.co/docs/features/path-aliases ) rules and use [`micro-proxy` ](https://github.com/zeit/micro-proxy ) as the proxy.
## Special Notes
* All pages should be unique across zones. A page with the same name should not exist in multiple zones. Otherwise, there'll be unexpected behaviour in client side navigation.
2018-04-03 12:19:05 +00:00
* According to the above example, a page named `blog` should not be exist in the `home` zone.
2018-01-30 15:40:52 +00:00
## Production Deployment
Here's how are going to deploy this application into production.
* Open the `now.json` file in both `blog` and `home` directories and change the aliases as you wish.
* Then update `rules-prod.json` accordingly.
* Now deploy both apps:
2018-04-03 12:19:05 +00:00
```bash
2018-01-30 15:40:52 +00:00
cd home
now & & now alias
cd ../blog
now & & now alias
cd ..
2018-04-03 12:19:05 +00:00
```
2018-01-30 15:40:52 +00:00
* Finally, set the path alias rules with
2018-04-03 12:19:05 +00:00
```bash
2018-01-30 15:40:52 +00:00
now alias with-zones.now.sh -r rules-prod.json
2018-04-03 12:19:05 +00:00
```
2018-01-30 15:40:52 +00:00
> You can use a domain name of your choice in the above command instead of `with-zones.now.sh`.
That's it.
Now you can access the final app via: < https: / / with-zones . now . sh >