Skip to content

Commit

Permalink
Configure Kestrel wildcard host (#156)
Browse files Browse the repository at this point in the history
  • Loading branch information
runesoerensen authored Nov 20, 2024
1 parent a4f6650 commit c9d704d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions buildpacks/dotnet/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Web application launch processes now configure Kestrel to bind both IPv4 and IPv6 addresses. ([#156](https://github.com/heroku/buildpacks-dotnet/pull/156))

## [0.1.6] - 2024-11-12

### Added
Expand Down
2 changes: 1 addition & 1 deletion buildpacks/dotnet/src/launch_process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ pub(crate) fn detect_solution_processes(
);

if project.project_type == ProjectType::WebApplication {
command.push_str(" --urls http://0.0.0.0:$PORT");
command.push_str(" --urls http://*:$PORT");
}

project
Expand Down

0 comments on commit c9d704d

Please sign in to comment.