Skip to content

Commit

Permalink
Rename to openstack-mitm
Browse files Browse the repository at this point in the history
  • Loading branch information
pierreprinetti committed Apr 10, 2024
1 parent b41eb99 commit 22baeed
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
cert.pem
key.pem
os-proxy
openstack-mitm
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# os-proxy
# openstack-mitm

Proxies calls to the OpenStack API with a self-signed certificate.

All URLs in the OpenStack catalog are rewritten to point to the proxy itself, which will properly reverse proxy them to the original URL.

## Use locally

Download the binary for linux64 on this repository's [release page](https://github.com/shiftstack/os-proxy/releases) or build it with `go build .`.
Download the binary for linux64 on this repository's [release page](https://github.com/pierreprinetti/openstack-mitm/releases) or build it with `go build .`.

**Required configuration:**
* **--remote-authurl**: URL of the remote OpenStack Keystone.
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module github.com/shiftstack/os-proxy
module github.com/pierreprinetti/openstack-mitm

go 1.21.1
go 1.22.2

require github.com/gofrs/uuid/v5 v5.0.0
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
"net/url"
"os"

"github.com/shiftstack/os-proxy/proxy"
"github.com/pierreprinetti/openstack-mitm/proxy"
)

const (
Expand Down
6 changes: 3 additions & 3 deletions proxy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
set -Eeuo pipefail

declare -r \
osproxy_url='https://github.com/shiftstack/os-proxy/releases/download/v1.0.1/os-proxy' \
osproxy_sha512='d4a9210091e4d1ed4c697762ac5ed59625c97dbdf3ce58cc4bbd7f3821190f482e2464558fbd08ea737744a7cc496e9b6db4381c3941b8fb1c864d1bec35113f'
osproxy_url='https://github.com/pierreprinetti/openstack-mitm/releases/download/v1.0.2/openstack-mitm' \
osproxy_sha512='f6a294643a3d4a808da047c12c176f339e054b4790a4f5f2c70a9dab5940a0d876a1591dc43ab15dbc4da72d6f2e985b8fff8c2c2b7343bb28356d79e702d96d'

print_help() {
echo -e "github.com/shiftstack/os-proxy"
echo -e "github.com/pierreprinetti/openstack-mitm"
echo -e "Proxy calls to the OpenStack API"
echo
echo -e "Required configuration:"
Expand Down

0 comments on commit 22baeed

Please sign in to comment.