Hello cloud

This commit is contained in:
Pierre Martin 2021-03-08 04:43:53 +01:00
parent 6994b85f09
commit 3fc9bef623
3 changed files with 39 additions and 0 deletions

27
.platform.app.yaml Normal file
View File

@ -0,0 +1,27 @@
# This file describes an application. You can have multiple applications
# in the same project.
# The name of this app. Must be unique within a project.
name: app
# The type of the application to build.
type: php:7.4
# The relationships of the application with services or other applications.
# The left-hand side is the name of the relationship as it will be exposed
# to the application in the PLATFORM_RELATIONSHIPS variable. The right-hand
# side is in the form `<service name>:<endpoint name>`.
#relationships:
# database: "db:mysql"
# The size of the persistent disk of the application (in MB).
disk: 2048
# The configuration of app when it is exposed to the web.
web:
locations:
"/":
# The public directory of the app, relative to its root.
root: "web"
# The front-controller script to send non-static requests to.
passthru: "/index.php"

12
.platform/routes.yaml Normal file
View File

@ -0,0 +1,12 @@
# The routes of the project.
#
# Each route describes how an incoming URL is going
# to be processed by Platform.sh.
"https://{default}/":
type: upstream
upstream: "app:http"
"https://www.{default}/":
type: redirect
to: "https://{default}/"

0
.platform/services.yaml Normal file
View File