You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
302 B
YAML
17 lines
302 B
YAML
|
3 months ago
|
---
|
||
|
|
runtime: go113
|
||
|
|
|
||
|
|
main: ./cmd/go_httpbin
|
||
|
|
|
||
|
|
handlers:
|
||
|
|
# Always redirect index requests to https
|
||
|
|
- url: /
|
||
|
|
script: auto
|
||
|
|
secure: always
|
||
|
|
redirect_http_response_code: 301
|
||
|
|
|
||
|
|
# Allow requests for any other resources via either http or https
|
||
|
|
- url: /.+
|
||
|
|
script: auto
|
||
|
|
secure: optional
|