mirror of
https://github.com/lldap/lldap.git
synced 2026-04-25 00:05:50 +03:00
[PR #1392] feat(server): add native HTTPS support for the web interface #1296
Labels
No labels
backend
blocked
bug
cleanup
dependencies
docker
documentation
duplicate
enhancement
enhancement
frontend
github_actions
good first issue
help wanted
help wanted
integration
invalid
ldap
pull-request
question
rust
rust
tests
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/lldap-lldap#1296
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/lldap/lldap/pull/1392
Author: @lyzstrik
Created: 1/31/2026
Status: 🔄 Open
Base:
main← Head:feat/native-https📝 Commits (4)
32540bcfeat(server): add native HTTPS support for the web interface3710235Update docs/install.md1443849fix(server): upgrade reqwest and fix healthcheck logic25a1577fix: coderabbitai issue📊 Changes
9 files changed (+222 additions, -59 deletions)
View changed files
📝
Cargo.lock(+1 -1)📝
docs/install.md(+11 -4)📝
lldap_config.docker_template.toml(+10 -0)📝
server/Cargo.toml(+2 -2)📝
server/src/cli.rs(+23 -0)📝
server/src/configuration.rs(+42 -2)📝
server/src/healthcheck.rs(+37 -6)📝
server/src/main.rs(+11 -3)📝
server/src/tcp_server.rs(+85 -41)📄 Description
This commit enables the web server to run natively over HTTPS, allowing secure deployments without requiring a reverse proxy.
Key changes:
[https_options]to config and CLI arguments (port, cert/key paths, enabled flag).tcp_server.rsto support binding with TLS.check_httpswhich uses certificate pinning to verify identity.install.mdandlldap_config.docker_template.tomlwith HTTPS configuration examples.🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.