Questions tagged [app.yaml]

app.yaml is a configuration file for Google App Engine applications.

With app.yaml, you can configure your App Engine application. For Java apps, it allows you to configure your application more easily, and with fewer files, than with the standard web.xml configuration. You can use app.yaml as long as your application does not need to be portable to other Java application servers.

Source: developer.google.com (Java Application Configuration Using app.yaml)

309 questions
0
votes
1 answer

Python 2.7 Fatal error when loading application configuration:Unknown url handler type

I'm experiencing the following error attemtpting to run helloworld application Fatal error when loading application configuration:Unknown url handler type app.yaml code follows : application: helloworld version: 1 runtime: python27 api_version:…
0
votes
0 answers

Google App Engine app.yaml doesn't work on legacy Python 2.5 Master/Slave applicaton

Have a legacy GAE application running Python 2.5 and Master/Slave. Trying to get url routing working, this is what I have in app.yaml: application: theapp version: 1 runtime: python api_version: 1 handlers: - url: /rest/.* script:…
Chris Dutrow
  • 42,732
  • 59
  • 174
  • 243
-1
votes
2 answers

gcloud error when deploying to google app engine flexible environment

Recently I have needed to add web sockets to my backend application currently hosted on Google App Engine (GAE) standard environment. Because web sockets are a feature only available in GAE's flexible environment, I have been attempting a…
-1
votes
1 answer

How to limit idle instances to 1 and continue with auto scaling when it needed - App engine standard environment

I want to achieve this from the app.yaml: Always one instance will left open. When there is a traffic it will be auto scaling with no limits. When I moving the traffic to the next version, all instances of the previous version will turn off. I…
-1
votes
1 answer

Restrict public access to files in google cloud php application

I have deployed a php application to google app engine. The app.yaml file looks like below: - url: /css static_dir: css - url: /js static_dir: js - url: /api script: api.php - url: / static_files: index.html upload: index.html As of…
Ashy Ashcsi
  • 1,045
  • 3
  • 16
  • 33
-1
votes
1 answer

Issues Getting PHP to work with app.yaml and Google App Engine

I've launched an HTML site that works just fine on GAE but I am struggling when it comes to activating and integrating my PHP code. I know it is likely because of my app.yaml contruction. I followed other recommendations to simplify the app.yaml…
harozi2
  • 9
  • 2
-2
votes
0 answers

Google App Engine not executing contact.php

I have a Bootstrapmade template which is html/css and a contact.php file and associated php_email_form.php file. The problem is I cannot get Google App Engine to execute contact.php whatever I try. My yaml looks like this: runtime:…
-2
votes
1 answer

Google App Engine: unpredictable cost and discrepancy between app engine dashboard vs billing export

I have been exploring the App Engine settings for a small data science web application for 2 weeks. Since it is a personal project that bills my own wallet, I tried a few different parameters in app.yaml to reduce the "frontend instances" cost.…
-3
votes
1 answer

how to add trailing slash at end of urls in app yaml

however mypp.appspot.com/about gives an error. i have to include the trailing slash mypp.appspot.com/about/ Is there any way to fix this? For example: https://example.com/folder_name/sub_folderName/ am using this: - url: /(.*)/?$ static_files:…
user264675
  • 316
  • 1
  • 4
  • 18
1 2 3
20
21