You've already forked dockerfiles
mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-11-29 22:38:35 +02:00
add nginx-sso
This commit is contained in:
42
nginx-sso/data/config.yaml
Normal file
42
nginx-sso/data/config.yaml
Normal file
@@ -0,0 +1,42 @@
|
||||
---
|
||||
|
||||
login:
|
||||
title: "yourdomain.com - Login"
|
||||
default_method: "simple"
|
||||
hide_mfa_field: true
|
||||
names:
|
||||
simple: "Username / Password"
|
||||
|
||||
cookie:
|
||||
domain: ".yourdomain.com"
|
||||
# You'll want to regenerate this. Use something like: cat /dev/urandom | tr -dc 'A-Za-z0-9' | dd bs=1 count=60
|
||||
authentication_key: "5foFtWocwA3hq0tUztgMqn9xaagqNP1wFqfFyZDHTxhr154iQQ60eDI9z6oDVNHF7B"
|
||||
|
||||
listen:
|
||||
addr: "0.0.0.0"
|
||||
port: 8082
|
||||
|
||||
audit_log:
|
||||
targets:
|
||||
- fd://stdout
|
||||
- file:///var/log/nginx-sso/audit.jsonl
|
||||
events: ['access_denied', 'login_success', 'login_failure', 'logout', 'validate']
|
||||
headers: ['x-origin-uri']
|
||||
trusted_ip_headers: ["X-Forwarded-For", "RemoteAddr", "X-Real-IP"]
|
||||
|
||||
acl:
|
||||
rule_sets:
|
||||
- rules:
|
||||
- field: "x-host"
|
||||
regexp: ".*"
|
||||
allow: ["@admins"]
|
||||
|
||||
providers:
|
||||
simple:
|
||||
enable_basic_auth: true
|
||||
users:
|
||||
# This password is 'admin'. Use this to generate a new password:
|
||||
# htpasswd -BnC 10 ""
|
||||
admin: "$2y$10$3aJxJ6ttJNPeky/bCdg1OOVvGU8pLVj9L.U9kN0F0JWLN.nt3b5WO"
|
||||
groups:
|
||||
admins: ["admin"]
|
||||
Reference in New Issue
Block a user