Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion dashboard/app/app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ handlers:
- url: /static
static_dir: dashboard/app/static
secure: always
- url: /(admin|cron/.*)
# debug is for net/http/pprof handlers.
- url: /(admin|debug|cron/.*)
script: auto
login: admin
secure: always
Expand Down
1 change: 1 addition & 0 deletions dashboard/app/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import (
"fmt"
"html/template"
"net/http"
_ "net/http/pprof" // app.yaml restricts this to admins
"net/url"
"os"
"regexp"
Expand Down
Loading