Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
T
Titanium-Web-Proxy
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Titanium-Web-Proxy
Commits
6709bb30
Commit
6709bb30
authored
Oct 07, 2016
by
justcoding121
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update readme
parent
5552e391
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
6 deletions
+9
-6
README.md
README.md
+9
-6
No files found.
README.md
View file @
6709bb30
...
@@ -17,6 +17,8 @@ Features
...
@@ -17,6 +17,8 @@ Features
*
Safely relays WebSocket requests over Http
*
Safely relays WebSocket requests over Http
*
Support mutual SSL authentication
*
Support mutual SSL authentication
*
Fully asynchronous proxy
*
Fully asynchronous proxy
*
Supports proxy authentication
Usage
Usage
=====
=====
...
@@ -27,16 +29,15 @@ Install by nuget:
...
@@ -27,16 +29,15 @@ Install by nuget:
Install-Package Titanium.Web.Proxy
Install-Package Titanium.Web.Proxy
After installing nuget package mark following files to be copied to app directory
*
makecert.exe
Setup HTTP proxy:
Setup HTTP proxy:
```
csharp
```
csharp
var
proxyServer
=
new
ProxyServer
();
var
proxyServer
=
new
ProxyServer
();
//locally trust root certificate used by this proxy
proxyServer
.
TrustRootCertificate
=
true
;
proxyServer
.
BeforeRequest
+=
OnRequest
;
proxyServer
.
BeforeRequest
+=
OnRequest
;
proxyServer
.
BeforeResponse
+=
OnResponse
;
proxyServer
.
BeforeResponse
+=
OnResponse
;
proxyServer
.
ServerCertificateValidationCallback
+=
OnCertificateValidation
;
proxyServer
.
ServerCertificateValidationCallback
+=
OnCertificateValidation
;
...
@@ -176,7 +177,9 @@ Sample request and response event handlers
...
@@ -176,7 +177,9 @@ Sample request and response event handlers
```
```
Future roadmap
Future roadmap
============
============
*
Implement Kerberos/NTLM authentication over HTTP protocols for windows domain
*
Support Server Name Indication (SNI) for transparent endpoints
*
Support Server Name Indication (SNI) for transparent endpoints
*
Support HTTP 2.0
*
Support HTTP 2.0
*
Support updstream AutoProxy detection
*
Implement Kerberos/NTLM authentication over HTTP protocols for windows domain
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment