cinderblockgames

Results 33 comments of cinderblockgames

Asking on Authelia's repo: https://github.com/authelia/authelia/discussions/4998

@daledavies Seems like the easiest approach (for here anyway) would be a way to override the request type per site. So, something like ``` { "name": "Recipes", "url": "https://recipes.example.com", "description":...

@daledavies Don't suppose you want to add to the [discussion](https://github.com/authelia/authelia/discussions/4998#discussioncomment-5129495)?

Based on the discussion, it sounds like maybe the best thing to do is to allow the list of acceptable responses while also allowing a specification of if redirects should...

@daledavies I do think that would help - being able to point to one place for the link and another for the status could let me try to set up...

@daledavies Trying to test this - I added `"request_method": "GET"` to the sites.json config for this site, but I'm still getting an error. Are there logs that I can check...

Relevant bits: ``` /var/www/html # curl -v "https://recipes.example.com/invite/[redacted]" ``` ``` < HTTP/1.1 302 Found 302 Found ``` ``` /var/www/html # curl -v "https://login.example.com/?rd=https%3A%2F%2Frecipes .example.com%2Finvite%2F[redacted]&amp;rm=GET" ``` ``` < HTTP/1.1 200 OK...

So, this is interesting. Here's it with curl, which looks right: ``` curl -vL --max-redirs 5 "https://recipes.example.com/invite/[redacted]" * Trying [redacted]:443... * Connected to recipes.example.com ([redacted]) port 443 (#0) * ALPN,...

That's working! Still don't know why the app is seeing just a straight 401 instead of the 302, but I'm happy. Thank you! Edit: So nice to see greens across...

``` { "sites": [ { "name": "Home", "url" : "https://welcometo.example.com", "description": "You are here", "icon": "jump.png" }, { "name": "Media", "url" : "https://media.example.com", "description": "Watch media", "icon": "jellyfin.png" }, {...