Skip to content

chris-sun-star/digest-proxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

digest-proxy

About

This is a simple proxy server to proxy the request to the target webserver with digest auth

How to run

Download the binary, set environment variables and start the proxy server

export TARGET_URL='https://api.example.com:8080'   // the target web service address you want to request
export USERNAME='someuser'                         // user name
export PASSWORD='user-password'                    // password
export PORT='3000'                                 // proxy server listen port
./digest-proxy

I also provide a docker image to simplify the deployment, you may launch the proxy server using the following command

docker run -d -e TARGET_URL='https://api.example.com' -e USERNAME='someuser' -e PASSWORD='password' -e PORT='3000' -p 3000:3000  wizardonmoon/digest-proxy:0.1.0

After the proxy is started, you can call the proxy server instead of calling the original web server.

For example, if you originally call the web server using the following command

curl --digest --user someuser:password -L 'https://api.example.com/info'

instead, you can call the proxy server using the following command

curl -L 'http://127.0.0.1:3000/info'

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published