omnigollum
omnigollum copied to clipboard
Omniauth authentication for gollum
Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.12.5 to 1.13.6. Release notes Sourced from nokogiri's releases. 1.13.6 / 2022-05-08 Security [CRuby] Address CVE-2022-29181, improper handling of unexpected data types, related to untrusted inputs to...
I followed the setup for using [zquestz/omniauth-google-oauth2](https://github.com/zquestz/omniauth-google-oauth2#installation) and put that into the omnigollum_options: ```ruby omnigollum_options = { providers: Proc.new do provider :google_oauth2, ENV['GOOGLE_CLIENT_ID'], ENV['GOOGLE_CLIENT_SECRET'] end, dummy_auth: false, } ``` but...
After a successful login, how can I logout and login again as another user?
Hi, I cannot get omnigollum to redirect to my locally hosted gitlab instance for authentication. I have compiled the latest omnigollum from git, [omniauth-gitlab 2.0.0](https://github.com/linchus/omniauth-gitlab/tree/master) and installed them as gems...
Thanks for your great work on Omnigollum. While using it, I've just noticed that if you specify `protected_routes` for Omnigollum in Gollum's `config.rb` as such: ``` :protected_routes => [ '/private/*',...
I defined a part of a wiki that is supposed to be private by doing so in `config.rb` ``` :protected_routes => [ '/private/*', '/private'], ``` While that seems to work...
The default option `:authorized_users => []` and the code that checks if a user is authorized (`when Rexexp`, `when Array`, `else`) implies that the default option for authorized users is...
Certain implementations of Jasig CAS send back variables with non-standard cases - this is an attempt to normalize for that and for content of the hashes of other implementations.
Omnigollum redirects back to github after authentication. I've traced the issue down to this line: https://github.com/arr2036/omnigollum/blob/master/lib/omnigollum.rb#L52 If I simply change it to '/' the problem goes away, but ideally redirects...
Hi, first of all: really nice work!! Before I found your repo I ran gollum with basic http auth.. One small issue: The syntax in the `config.rb.example` is not valid....