appengine/flexible/laravel/app-dbsessions.yaml (19 lines of code) (raw):

runtime: php env: flex runtime_config: document_root: public # Ensure we skip ".env", which is only for local development skip_files: - .env env_variables: # Put production environment variables here. APP_LOG: errorlog APP_KEY: YOUR_APP_KEY STORAGE_DIR: /tmp CACHE_DRIVER: database SESSION_DRIVER: database ## Set these environment variables according to your CloudSQL configuration. DB_HOST: localhost DB_DATABASE: YOUR_DB_DATABASE DB_USERNAME: YOUR_DB_USERNAME DB_PASSWORD: YOUR_DB_PASSWORD DB_SOCKET: "/cloudsql/YOUR_CLOUDSQL_CONNECTION_NAME" beta_settings: # for Cloud SQL, uncomment and set this value to the Cloud SQL # connection name, e.g. # "project:region:cloudsql-instance" cloud_sql_instances: "YOUR_CLOUDSQL_CONNECTION_NAME"