-
Notifications
You must be signed in to change notification settings - Fork 7
Reverse proxy with https support #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
francisf
merged 45 commits into
browserstack:master
from
neerajshukla1911:reverse-proxy-with-https
Oct 27, 2020
Merged
Changes from all commits
Commits
Show all changes
45 commits
Select commit
Hold shift + click to select a range
bdafb4d
reverse proxy server
neerajshukla1911 3af63ab
fix for proxy host
neerajshukla1911 b5582c4
refactor
neerajshukla1911 d93a2e0
mremoved
neerajshukla1911 853c140
reverse proxy tests
neerajshukla1911 e02d3ab
https support
neerajshukla1911 d58a203
refactor
neerajshukla1911 00327ba
refactor and tests
neerajshukla1911 678e456
removed redundant code
neerajshukla1911 94ce40c
move common variable up
neerajshukla1911 b77557d
refactored code
neerajshukla1911 8fe5b23
bug fix
neerajshukla1911 a1e8281
removed unnecessary console log
neerajshukla1911 c8fa1f9
version bump
neerajshukla1911 d62fd57
reverse proxy with https support
neerajshukla1911 b44e248
request log change
neerajshukla1911 949c0c3
log url fix
neerajshukla1911 3eb7827
refactored code
neerajshukla1911 50744b3
bug fix
neerajshukla1911 b81b4eb
added two servers for proxy and reverse proxy
neerajshukla1911 99412f5
refactored code
neerajshukla1911 8c62005
refactor
neerajshukla1911 1deee5a
more refactore
neerajshukla1911 2305517
proxy and reverse proxy server
neerajshukla1911 0f31476
tests
neerajshukla1911 7b9b8c6
lint fix and test
neerajshukla1911 2c70cbf
readme and refactor
neerajshukla1911 d799697
bug fix
neerajshukla1911 939d4b7
unit tests
neerajshukla1911 269f7eb
lint fix
neerajshukla1911 1d0b707
refactor
neerajshukla1911 cef8c1e
removed irrelevant testsaces
neerajshukla1911 9e382d1
more refactor
neerajshukla1911 b6af389
addressed review comments
neerajshukla1911 3ee7f44
added tests in proxy and reverseProxy for http and https
neerajshukla1911 d0464c2
request end log url fix
neerajshukla1911 59987ea
added tests
neerajshukla1911 406abf6
bug fix
neerajshukla1911 4930ed1
refactor
neerajshukla1911 95f96f2
bug fix for logging
neerajshukla1911 4f25a94
tests with credentials in url
neerajshukla1911 8828e6d
doc changes
neerajshukla1911 a9ff653
add: github actions to trigger unit tests. logo and badges
rchougule 2970e3c
fix: EOL. Replaced browserstack links for badge
rchougule 37e90bb
Merge pull request #1 from rchougule/reverse-proxy-with-https
neerajshukla1911 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: 'unit-tests' | ||
on: | ||
pull_request: | ||
paths: | ||
- './**' | ||
- '.github/workflows/unit-tests*' | ||
push: | ||
paths: | ||
- './**' | ||
- '.github/workflows/unit-tests*' | ||
|
||
jobs: | ||
unit-tests: | ||
runs-on: ${{ matrix.operating-system }} | ||
strategy: | ||
matrix: | ||
operating-system: [ubuntu-latest, macos-latest] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Set Node.js 4.9.1 | ||
uses: actions/setup-node@master | ||
with: | ||
node-version: 4.9.1 | ||
|
||
- name: npm install | ||
working-directory: ./ | ||
run: npm install | ||
|
||
- name: Lint and Unit tests | ||
working-directory: ./ | ||
run: npm run test |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.