Skip to content

Commit 22baeed

Browse files
Rename to openstack-mitm
1 parent b41eb99 commit 22baeed

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
cert.pem
22
key.pem
3-
os-proxy
3+
openstack-mitm

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# os-proxy
1+
# openstack-mitm
22

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

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

77
## Use locally
88

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

1111
**Required configuration:**
1212
* **--remote-authurl**: URL of the remote OpenStack Keystone.

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
module github.com/shiftstack/os-proxy
1+
module github.com/pierreprinetti/openstack-mitm
22

3-
go 1.21.1
3+
go 1.22.2
44

55
require github.com/gofrs/uuid/v5 v5.0.0

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
"net/url"
2424
"os"
2525

26-
"github.com/shiftstack/os-proxy/proxy"
26+
"github.com/pierreprinetti/openstack-mitm/proxy"
2727
)
2828

2929
const (

proxy.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
set -Eeuo pipefail
1818

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

2323
print_help() {
24-
echo -e "github.com/shiftstack/os-proxy"
24+
echo -e "github.com/pierreprinetti/openstack-mitm"
2525
echo -e "Proxy calls to the OpenStack API"
2626
echo
2727
echo -e "Required configuration:"

0 commit comments

Comments
 (0)