Skip to content
This repository was archived by the owner on Oct 8, 2025. It is now read-only.
This repository was archived by the owner on Oct 8, 2025. It is now read-only.

Linux support #69

@MarcellVokk

Description

@MarcellVokk

Hi!

Does this library support linux?
I can't seem to get it working...

My code

var httpConfig = new ServerConfig()
.AddRoute(new HttpRequestHandler());

var httpsConfig = new ServerConfig()
.AddRoute(new HttpRequestHandler());
httpsConfig.LoadCertificate(@"./bfmeladdercom.pfx", "4j4k0c2c");

HttpServerTask = HttpServer.ListenAsync(
    new IPEndPoint(IPAddress.Any, 80),
    false,
    httpConfig
);

HttpsServerTask = HttpServer.ListenAsync(
    new IPEndPoint(IPAddress.Any, 443),
    true,
    httpsConfig
);

No requests are being received by HttpRequestHandler...

Publish/build config
Screenshot 2024-01-04 083209

Any help would be apreciated!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions