[PR #353] [MERGED] Dagger 2: Fixing Web Server #441

Closed
opened 2026-02-26 04:35:15 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/mageddo/dns-proxy-server/pull/353
Author: @mageddo
Created: 3/12/2023
Status: Merged
Merged: 3/12/2023
Merged by: @mageddo

Base: masterHead: dagger-2


📝 Commits (10+)

📊 Changes

23 files changed (+664 additions, -100 deletions)

View changed files

📝 .gitignore (+58 -26)
📝 Dockerfile.builder.linux-aarch64 (+1 -1)
📝 Dockerfile.builder.linux-amd64 (+6 -7)
📝 build.gradle (+37 -1)
📝 builder.bash (+7 -5)
📝 src/main/java/com/mageddo/commons/io/IoUtils.java (+20 -0)
📝 src/main/java/com/mageddo/dnsproxyserver/config/entrypoint/ConfigProps.java (+4 -14)
📝 src/main/java/com/mageddo/dnsproxyserver/server/http/StaticFilesController.java (+67 -4)
src/main/java/com/mageddo/http/HttpStatus.java (+74 -0)
src/main/java/com/mageddo/http/Path.java (+60 -0)
📝 src/main/java/com/mageddo/http/UriUtils.java (+8 -5)
📝 src/main/java/com/mageddo/http/WebServer.java (+49 -22)
src/main/java/com/mageddo/http/Wildcards.java (+34 -0)
📝 src/main/java/com/mageddo/http/codec/EncoderJson.java (+2 -2)
📝 src/main/java/com/mageddo/http/codec/Encoders.java (+12 -0)
📝 src/main/resources/META-INF/native-image/dps/native-image.properties (+1 -0)
📝 src/main/resources/META-INF/native-image/graal-generated/reflect-logback.json (+10 -1)
src/main/resources/META-INF/resources/index.html (+0 -1)
src/main/resources/META-INF/resources/static/index.html (+0 -1)
📝 src/main/resources/application.properties (+0 -10)

...and 3 more files

📄 Description

Partially fixes #326

  • Fixes static file server
  • partially setup build release

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/mageddo/dns-proxy-server/pull/353 **Author:** [@mageddo](https://github.com/mageddo) **Created:** 3/12/2023 **Status:** ✅ Merged **Merged:** 3/12/2023 **Merged by:** [@mageddo](https://github.com/mageddo) **Base:** `master` ← **Head:** `dagger-2` --- ### 📝 Commits (10+) - [`e179d4a`](https://github.com/mageddo/dns-proxy-server/commit/e179d4af726a8ff492f8db51a3b3e5676ac2dc4c) configuring shadowjar - [`160f7ba`](https://github.com/mageddo/dns-proxy-server/commit/160f7bac6b5b863286410b708330828e89d9dd97) setup native image plugin - [`3e62c7c`](https://github.com/mageddo/dns-proxy-server/commit/3e62c7c0fdb4d0653de4ec0ba423745ec4689d6b) clearing props - [`a7dcf02`](https://github.com/mageddo/dns-proxy-server/commit/a7dcf02528b1de37c682b47c46f127ea9e89bac5) configuring logback file - [`43c0b49`](https://github.com/mageddo/dns-proxy-server/commit/43c0b49af1d68fd0d245a5e5da769692f560983f) fixing mdc - [`a037507`](https://github.com/mageddo/dns-proxy-server/commit/a0375076dfa05ed570fc9bdb7e24bcc9c762a212) adjusting amd build - [`412d842`](https://github.com/mageddo/dns-proxy-server/commit/412d842e0238b996da6db12d70b5cf0d377fcaf6) adjusting builder bash - [`279d258`](https://github.com/mageddo/dns-proxy-server/commit/279d25800c1cd08698bb31ff5570906d05ad8e64) removed - [`7621562`](https://github.com/mageddo/dns-proxy-server/commit/7621562238bba69a8301ef9a74112fbc706f1858) ensure path is created - [`f843639`](https://github.com/mageddo/dns-proxy-server/commit/f843639ed3faee4485736184567e11b0e8a83b7a) adjusting gitignore ### 📊 Changes **23 files changed** (+664 additions, -100 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+58 -26) 📝 `Dockerfile.builder.linux-aarch64` (+1 -1) 📝 `Dockerfile.builder.linux-amd64` (+6 -7) 📝 `build.gradle` (+37 -1) 📝 `builder.bash` (+7 -5) 📝 `src/main/java/com/mageddo/commons/io/IoUtils.java` (+20 -0) 📝 `src/main/java/com/mageddo/dnsproxyserver/config/entrypoint/ConfigProps.java` (+4 -14) 📝 `src/main/java/com/mageddo/dnsproxyserver/server/http/StaticFilesController.java` (+67 -4) ➕ `src/main/java/com/mageddo/http/HttpStatus.java` (+74 -0) ➕ `src/main/java/com/mageddo/http/Path.java` (+60 -0) 📝 `src/main/java/com/mageddo/http/UriUtils.java` (+8 -5) 📝 `src/main/java/com/mageddo/http/WebServer.java` (+49 -22) ➕ `src/main/java/com/mageddo/http/Wildcards.java` (+34 -0) 📝 `src/main/java/com/mageddo/http/codec/EncoderJson.java` (+2 -2) 📝 `src/main/java/com/mageddo/http/codec/Encoders.java` (+12 -0) 📝 `src/main/resources/META-INF/native-image/dps/native-image.properties` (+1 -0) 📝 `src/main/resources/META-INF/native-image/graal-generated/reflect-logback.json` (+10 -1) ➖ `src/main/resources/META-INF/resources/index.html` (+0 -1) ➖ `src/main/resources/META-INF/resources/static/index.html` (+0 -1) 📝 `src/main/resources/application.properties` (+0 -10) _...and 3 more files_ </details> ### 📄 Description Partially fixes #326 * Fixes static file server * partially setup build release --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 04:35:15 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/dns-proxy-server-mageddo#441
No description provided.