| OLD | NEW |
| 1 # Deploy tool Component for the LogDog Coordinator "backend" module. | 1 # Deploy tool Component for the LogDog Coordinator "backend" module. |
| 2 appengine_module < | 2 appengine_module < |
| 3 module_name: "backend" | 3 module_name: "backend" |
| 4 go_module < | 4 go_module < |
| 5 entry_package: "github.com/luci/luci-go/logdog/appengine/cmd/coordinator/bac
kend" | 5 entry_package: "github.com/luci/luci-go/logdog/appengine/cmd/coordinator/bac
kend" |
| 6 > | 6 > |
| 7 classic < | 7 classic < |
| 8 instance_class: IC_2 | 8 instance_class: IC_2 |
| 9 > | 9 > |
| 10 | 10 |
| 11 # Debug endpoints for profiling access. |
| 11 handlers < | 12 handlers < |
| 12 handler < | 13 handler < |
| 14 url: "/debug/*" |
| 15 secure: SECURE_ALWAYS |
| 16 login: LOGIN_ADMIN |
| 17 > |
| 18 |
| 19 handler < |
| 13 url: "/.*" | 20 url: "/.*" |
| 14 login: LOGIN_ADMIN | 21 login: LOGIN_ADMIN |
| 15 secure: SECURE_ALWAYS | 22 secure: SECURE_ALWAYS |
| 16 > | 23 > |
| 17 > | 24 > |
| 18 | 25 |
| 19 resource_path: "/appengine/gaemiddleware/resources.cfg" | 26 resource_path: "/appengine/gaemiddleware/resources.cfg" |
| 20 resource_path: "/tumble/configs/tumble_resources.cfg" | 27 resource_path: "/tumble/configs/tumble_resources.cfg" |
| 21 resource_path: "/tumble/configs/tq_shards_${tumble.shards}.cfg" | 28 resource_path: "/tumble/configs/tq_shards_${tumble.shards}.cfg" |
| 22 > | 29 > |
| OLD | NEW |