1
0
Fork 0

proxy guidance

pull/341/head
Bryan MacFarlane 2020-02-12 09:26:59 -05:00
parent 6cbb8e9bc8
commit 2dcdf049a8
2 changed files with 16 additions and 0 deletions

View File

@ -92,6 +92,12 @@ Problem Matchers are a way to scan the output of actions for a specified regex p
<br/> <br/>
<br/> <br/>
:warning: [Proxy Server Support](docs/proxy-support.md)
Self-hosted runners can be configured to run behind proxy servers.
<br/>
<br/>
<h3><a href="https://github.com/actions/hello-world-javascript-action">Hello World JavaScript Action</a></h3> <h3><a href="https://github.com/actions/hello-world-javascript-action">Hello World JavaScript Action</a></h3>
Illustrates how to create a simple hello world javascript action. Illustrates how to create a simple hello world javascript action.

10
docs/proxy-support.md Normal file
View File

@ -0,0 +1,10 @@
# Proxy Server Support
Self-hosted runners [can be configured](https://help.github.com/en/actions/hosting-your-own-runners/using-a-proxy-server-with-self-hosted-runners) to run behind a proxy server in enterprises.
For actions to **just work** behind a proxy server:
1. Use [tool-cache] version >= 1.3.1
2. Optionally use [actions/http-client](https://github.com/actions/http-client)
If you are using other http clients, refer to the [environment variables set by the runner](https://help.github.com/en/actions/hosting-your-own-runners/using-a-proxy-server-with-self-hosted-runners).