| OLD | NEW |
| (Empty) | |
| 1 # Copyright 2017 The LUCI Authors. |
| 2 # |
| 3 # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 # you may not use this file except in compliance with the License. |
| 5 # You may obtain a copy of the License at |
| 6 # |
| 7 # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 # |
| 9 # Unless required by applicable law or agreed to in writing, software |
| 10 # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 # See the License for the specific language governing permissions and |
| 13 # limitations under the License. |
| 14 |
| 15 service: static |
| 16 runtime: go |
| 17 api_version: go1 |
| 18 |
| 19 handlers: |
| 20 - url: "/app/?" |
| 21 static_files: dist/logdog-app/index.html |
| 22 upload: dist/logdog-app/index.html |
| 23 secure: always |
| 24 |
| 25 - url: "/app" |
| 26 static_dir: dist/logdog-app |
| 27 secure: always |
| 28 |
| 29 # Handlers for LogDog View App. |
| 30 - url: "/v/?" |
| 31 static_files: dist/logdog-view/index.html |
| 32 upload: dist/logdog-app/index.html |
| 33 secure: always |
| 34 |
| 35 - url: "/v" |
| 36 static_dir: dist/logdog-view |
| 37 secure: always |
| 38 |
| 39 - url: "/rpcexplorer/?" |
| 40 static_files: dist/rpcexplorer/index.html |
| 41 upload: dist/rpcexplorer/index.html |
| 42 secure: always |
| 43 |
| 44 - url: "/rpcexplorer/services/.*" |
| 45 static_files: dist/rpcexplorer |
| 46 upload: dist/rpcexplorer/index.html |
| 47 secure: always |
| 48 |
| 49 - url: "/rpcexplorer" |
| 50 static_dir: dist/rpcexplorer |
| 51 secure: always |
| OLD | NEW |