-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml
45 lines (40 loc) · 1.49 KB
/
app.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#
# Event Info Bot - Bot service software for Telegram and Twitter to provide user with
# reminders of event date and info on request
#
# Copyright (C) 2019 Tiktaalik (Rodrigo Gambra-Middleton)
# Address your enquiries to: [email protected]
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
runtime: python37
handlers:
- url: /favicon\.ico
static_files: public_html/static/images/favicon.ico
upload: public_html/static/images/favicon\.ico
secure: always
redirect_http_response_code: 301
- url: /robots.txt
static_files: public_html/robots.txt
upload: public_html/robots\.txt
secure: always
redirect_http_response_code: 301
- url: /static
static_dir: public_html/static
secure: always
redirect_http_response_code: 301
- url: .*
script: auto
secure: always
redirect_http_response_code: 301