Skip to content

Commit 028af35

Browse files
author
NASSAR Mohammed (DIGIT-EXT)
committed
Update the readme, Add proxy configs
1 parent 98a9374 commit 028af35

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff 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
```

0 commit comments

Comments
 (0)