|
||||||||
|
This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators. For more information on JIRA, see: http://www.atlassian.com/software/jira |
||||||||
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
For more options, visit https://groups.google.com/d/optout.

We just worked around this to keep people from inappropriately killing builds and messing up workspaces. We have Jenkins hosted behind nginx, so in the site config for jenkins, I added this directive:
location ~ "/stop$" { return 401; }
This will return 401 (unauthorized) for anyone attempting to stop a build.