Compare commits

...

2 Commits

6 changed files with 43 additions and 6 deletions

View File

@ -19,6 +19,9 @@
* ✅ Streaming responses in slow operations like scaling down
or building
* Make more things configurable / remove hardcoded stuff
* ✅ Make server take options from file
* ✅ Make server take options from environment
* ✅ Make server password configurable
* admin/admin auth
* CD for binaries and images for at least arm64/x86
* Multi-container docker logs [faaso logs -f FUNKO]

View File

@ -6,7 +6,7 @@
http://*:8888 {
forward_auth /admin/* http://127.0.0.1:3000 {
uri http://127.0.0.1:3000
uri /auth
copy_headers {
Authorization
}

View File

@ -26,7 +26,7 @@ shards:
docr:
git: https://github.com/ralsina/docr.git
version: 0.1.1+git.commit.18f15cc7111b1d0c63347c7cca07aee9ec87a7a8
version: 0.1.1+git.commit.98a20178d5ae1391f1cd56e372530de6aa2b1ebc
exception_page:
git: https://github.com/crystal-loot/exception_page.git

View File

@ -1,4 +1,5 @@
require "cr-config"
require "kemal-basic-auth"
class Config
include CrConfig
@ -17,3 +18,30 @@ class Config
Config.set_instance config
end
end
class ConfigAuthHandler < Kemal::BasicAuth::Handler
only ["/auth"]
def call(context)
return call_next(context) unless only_match?(context)
super
end
def initialize
# Ignored, just make the compiler happy
@credentials = Kemal::BasicAuth::Credentials.new({"foo" => "bar"})
end
def authorize?(value) : String?
username, password = Base64.decode_string(value[BASIC.size + 1..-1]).split(":")
if username == "admin" && password == Config.instance.password
username
else
nil
end
end
end
# Tie auth to config
add_handler ConfigAuthHandler.new

View File

@ -6,14 +6,11 @@ require "./terminal.cr"
require "compress/gzip"
require "crystar"
require "docr"
require "kemal-basic-auth"
require "kemal"
require "uuid"
Config.load
basic_auth "admin", Config.instance.password
macro version
"{{ `grep version shard.yml | cut -d: -f2` }}".strip()
end
@ -26,4 +23,13 @@ get "/version" do
"#{version}"
end
get "/auth" do
end
get "/reload" do
Log.info { "Reloading configuration" }
Config.load
"Config reloaded"
end
Kemal.run

View File

@ -37,7 +37,7 @@ module Proxy
http://*:8888 {
forward_auth /admin/* http://127.0.0.1:3000 {
uri http://127.0.0.1:3000
uri /auth
copy_headers {
Authorization
}