Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
dotnet-version: 10.0.x

- name: Restore
run: dotnet restore aspire-tunnel-proxy.sln
run: dotnet restore devtunnel-proxy.sln

- name: Build
run: dotnet build aspire-tunnel-proxy.sln --configuration Release --no-restore
run: dotnet build devtunnel-proxy.sln --configuration Release --no-restore

- name: Test
run: dotnet test aspire-tunnel-proxy.sln --configuration Release --no-build --verbosity normal
run: dotnet test devtunnel-proxy.sln --configuration Release --no-build --verbosity normal
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# aspire-tunnel-proxy
# devtunnel-proxy

[![CI](https://github.com/LorcanChinnock/aspire-tunnel-proxy/actions/workflows/ci.yml/badge.svg)](https://github.com/LorcanChinnock/aspire-tunnel-proxy/actions/workflows/ci.yml)
[![CI](https://github.com/LorcanChinnock/devtunnel-proxy/actions/workflows/ci.yml/badge.svg)](https://github.com/LorcanChinnock/devtunnel-proxy/actions/workflows/ci.yml)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
[![.NET 10](https://img.shields.io/badge/.NET-10.0-512BD4.svg)](https://dotnet.microsoft.com/download/dotnet/10.0)

Expand All @@ -15,8 +15,8 @@ You need a public HTTPS URL that points at something running on your laptop —
## Quickstart

```bash
git clone https://github.com/LorcanChinnock/aspire-tunnel-proxy.git
cd aspire-tunnel-proxy
git clone https://github.com/LorcanChinnock/devtunnel-proxy.git
cd devtunnel-proxy
dotnet run --project src/AppHost
```

Expand Down Expand Up @@ -155,7 +155,7 @@ YARP routes/clusters fully follow the upstream schema — see [YARP config files

Set `DevTunnel:AnonymousAccess: false` in `src/AppHost/appsettings.json` for a private tunnel. Recipients then need a Microsoft/GitHub login the owner has authorised, or an `X-Tunnel-Authorization` token from `devtunnel token`. Note: private tunnels block cross-origin browser callers — `fetch()` from a deployed SPA on another origin can't complete the interactive sign-in.

To report a vulnerability privately, please open a [GitHub security advisory](https://github.com/LorcanChinnock/aspire-tunnel-proxy/security/advisories/new) rather than a public issue.
To report a vulnerability privately, please open a [GitHub security advisory](https://github.com/LorcanChinnock/devtunnel-proxy/security/advisories/new) rather than a public issue.

## Project layout

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/AppHost/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
}
},
"DevTunnel": {
"Id": "aspire-tunnel-proxy",
"Id": "devtunnel-proxy",
"AnonymousAccess": true
}
}
Loading