packages feed

sproxy2 1.94.0 → 1.94.1

raw patch · 3 files changed

+9/−2 lines, 3 files

Files

ChangeLog.md view
@@ -1,5 +1,12 @@ For differences with the original Sproxy scroll down. +1.94.1+======++  * Fixed a typo introduced in version 1.94.0 in SQL query:+    `... WHERE domain = domain ...` -> `... WHERE domain = :domain ...`++ 1.94.0 ====== 
sproxy2.cabal view
@@ -1,5 +1,5 @@ name: sproxy2-version: 1.94.0+version: 1.94.1 synopsis: Secure HTTP proxy for authenticating users via OAuth2 description:   Sproxy is secure by default. No requests makes it to the backend
src/Sproxy/Server/DB.hs view
@@ -69,7 +69,7 @@       AND gp.domain = :domain       AND gp.privilege IN (         SELECT privilege FROM privilege_rule-        WHERE domain = domain+        WHERE domain = :domain         AND :path LIKE path         AND method = :method         ORDER BY length(path) - length(replace(path, '/', '')) DESC LIMIT 1