Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ekzhang/rustpad
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: Tsoubry/rustpad-tls
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 5 commits
  • 6 files changed
  • 3 contributors

Commits on Sep 8, 2024

  1. Listen on ipv6 as well

    Jennifer Kramer authored and Tanguy Soubry committed Sep 8, 2024
    Copy the full SHA
    426d3e0 View commit details
  2. update dependencies

    Tanguy Soubry committed Sep 8, 2024
    Copy the full SHA
    fbb181d View commit details
  3. add tls options

    Tanguy Soubry committed Sep 8, 2024
    Copy the full SHA
    b134bb9 View commit details

Commits on Mar 22, 2025

  1. specify docker.io for images

    Tanguy Soubry committed Mar 22, 2025
    Copy the full SHA
    279e7c1 View commit details
  2. Copy the full SHA
    e672499 View commit details
Showing with 584 additions and 314 deletions.
  1. +2 −0 .env
  2. +2 −0 .gitignore
  3. +548 −294 Cargo.lock
  4. +3 −3 Dockerfile
  5. +15 −15 rustpad-server/Cargo.toml
  6. +14 −2 rustpad-server/src/main.rs
2 changes: 2 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Environment variables for development
RUST_LOG=info
EXPIRY_DAYS=1
TLS_CERT_PATH=cert.pem
TLS_KEY_PATH=key.pem
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -7,3 +7,5 @@ dist
*.local

.vscode

*.pem
Loading