Platform.sh User Documentation

Feature availability

This page applies to Grid and Dedicated Gen 3 projects. To ensure you have enough resources to support multiple apps, you need at least a Medium plan. To set up multiple apps on Dedicated Gen 2 environments, contact Sales.

Define routes for your multiple apps

Sign up for Upsun

Get your free trial by clicking the link below.

Get your Upsun free trial

When you set up a project containing multiple applications, all of your apps are served by a single router for the project. Each of your apps must have a name that’s unique within the project. To define specific routes for one of your apps, use this name.

There are various ways you can define routes for multiple app projects.

Diagram of a project containing multiple apps

In this project, you have a CMS app, two frontend apps (one using Symfony and another using Gatsby), and a Mercure Rocks server app, defined as follows:

.platform/applications.yaml
- name: admin
  type: nodejs:16
  source:
    root: admin
  ...
- name: api
  type: php:8.2
  source:
    root: api
  ...
- name: gatsby
  type: nodejs:18
  source:
    root: gatsby
  ...
- name: mercure
  type: golang:1.18
  source:
    root: mercure/.config
  ...

Depending on your needs, you could configure the router container using subdomains or using subdirectories.

Define routes using subdomains Anchor to this heading

You could define routes for your apps as follows:

.platform/routes.yaml
"https://mercure.{default}/":
    type: upstream
    upstream: "mercure:http"
"https://{default}/":
    type: upstream
    upstream: "api:http"

So if your default domain is example.com, that means:

  • https://mercure.example.com/ is served by your Mercure Rocks app (mercure).
  • https://example.com/ is served by your Symfony frontend app (api).

Define routes using subdirectories Anchor to this heading

Alternatively, you could define your routes as follows:

.platform/routes.yaml
"https://{default}/":
    type: upstream
    upstream: "api:http"
"https://{default}/admin":
    type: upstream
    upstream: "admin:http"

Then you would need to configure each app’s web.locations property to match these paths:

.platform/applications.yaml
-   name: api
    type: php:8.2
    source:
        root: api
    ...
    web:
        locations:
            "/":
                passthru: "/index.php"
                root: "public"
                index:
                    - index.php
- name: admin
  type: nodejs:16
  source:
    root: admin
  ...
  web:
    locations:
      '/admin':
        passthru: '/admin/index.html'
        root: 'build'
        index:
          - 'index.html'

So if your default domain is example.com, that means:

  • https://example.com/ is served by your Symfony frontend app (api).
  • https://example.com/admin is served by your Admin app (admin).

Note that in this example, for the configuration of your admin app, you need to add the URL suffix /admin as both an index in the web.locations and a value for the passhtru setting.

For a complete example, go to this project on GitHub.

Is this page helpful?