File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,11 @@ JIRA_PASS="jira-password-OR-api-token"
6666# to enable session cookie authorization
6767# COOKIE_AUTH_ENABLED=true
6868# COOKIE_FILE=storage/jira-cookie.txt
69+ # if you are behind a proxy, add proxy settings
70+ PROXY_SERVER=" your-proxy-server"
71+ PROXY_PORT=" proxy-port"
72+ PROXY_USER=" proxy-username"
73+ PROXY_PASSWORD=" proxy-password"
6974```
7075
7176** Important Note:**
@@ -92,6 +97,11 @@ $iss = new IssueService(new ArrayConfiguration(
9297 // to enable session cookie authorization (with basic authorization only)
9398 'cookieAuthEnabled' => true,
9499 'cookieFile' => storage_path('jira-cookie.txt'),
100+ // if you are behind a proxy, add proxy settings
101+ "proxyServer" => 'your-proxy-server',
102+ "proxyPort" => 'proxy-port',
103+ "proxyUser" => 'proxy-username',
104+ "proxyPassword" => 'proxy-password',
95105 )
96106 ));
97107```
You can’t perform that action at this time.
0 commit comments