github.com/google/syzkaller@v0.0.0-20240517125934-c0f1611a36d6/dashboard/app/app.yaml (about)

     1  # Copyright 2017 syzkaller project authors. All rights reserved.
     2  # Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
     3  
     4  runtime: go121
     5  app_engine_apis: true
     6  
     7  # With the f2 setting, the app episodically crashes with:
     8  # Exceeded soft memory limit of 256 MB with 264 MB after servicing X requests total.
     9  # See https://cloud.google.com/appengine/docs/standard/go/config/appref#instance_class
    10  instance_class: f4
    11  
    12  inbound_services:
    13  - mail
    14  - mail_bounce
    15  
    16  handlers:
    17  - url: /favicon.ico
    18    static_files: dashboard/app/static/favicon.ico
    19    upload: dashboard/app/static/favicon.ico
    20    secure: always
    21  - url: /robots.txt
    22    static_files: dashboard/app/static/robots.txt
    23    upload: dashboard/app/static/robots.txt
    24    secure: always
    25  - url: /static
    26    static_dir: dashboard/app/static
    27    secure: always
    28  - url: /(admin|cron/.*)
    29    script: auto
    30    login: admin
    31    secure: always
    32  - url: /_ah/(mail/.+|bounce)
    33    script: auto
    34    login: admin
    35  - url: /(|api|bug|text|x/.+|.*)
    36    script: auto
    37    secure: always