aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorGravatar laxmanpradhan <laxmanpradhan@gmail.com> 2023-12-30 14:45:31 -0800
committerGravatar GitHub <noreply@github.com> 2023-12-30 23:45:31 +0100
commit77108ea19e725022e6168753d19037d781b4f8fe (patch)
treefaa98ab4e8a34b20019cfda9ac1a3daed1bd424b /app
parenta3ebfe76ea423a002f62af25597dcfdd9308ad37 (diff)
Authentik oAuth setup documentation updates (#5969)
* Update 16_OpenID-Connect-Authentik.md updated docs * Add files via upload * Update 16_OpenID-Connect-Authentik.md Updated documentation with many clarifications. The most important one is the redirect URL which must include the port or it will not work. To ensure compatibility, I have recommended both URLs be added, with and without the port. Example docker-compose also added with traefik reverse proxy. * Reduce screenshot size * Fixes and improvements * Allow changing auth to HTTP --------- Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
Diffstat (limited to 'app')
-rw-r--r--app/views/auth/index.phtml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/auth/index.phtml b/app/views/auth/index.phtml
index f82adaaae..e41223609 100644
--- a/app/views/auth/index.phtml
+++ b/app/views/auth/index.phtml
@@ -21,8 +21,8 @@
<?php } ?>
<option value="form"<?= FreshRSS_Context::systemConf()->auth_type === 'form' ? ' selected="selected"' : '',
cryptAvailable() ? '' : ' disabled="disabled"' ?>><?= _t('admin.auth.form') ?></option>
- <option value="http_auth"<?= FreshRSS_Context::systemConf()->auth_type === 'http_auth' ? ' selected="selected"' : '',
- httpAuthUser() == '' ? ' disabled="disabled"' : '' ?>><?= _t('admin.auth.http') ?> (REMOTE_USER = '<?= httpAuthUser() ?>')</option>
+ <option value="http_auth"<?= FreshRSS_Context::systemConf()->auth_type === 'http_auth' ? ' selected="selected"' : '' ?>>
+ <?= _t('admin.auth.http') ?> (REMOTE_USER = '<?= httpAuthUser() ?>')</option>
<option value="none"<?= FreshRSS_Context::systemConf()->auth_type === 'none' ? ' selected="selected"' : '' ?>><?= _t('admin.auth.none') ?></option>
</select>
</div>