mirror of
https://github.com/ComputerScienceHouse/proxstar.git
synced 2025-03-09 15:40:09 +00:00
add oidc auth to all routes and yapf everything
This commit is contained in:
parent
b656df33ba
commit
539cd6f0f4
4 changed files with 97 additions and 38 deletions
|
|
@ -1,15 +1,31 @@
|
|||
# Proxstar
|
||||
VM_EXPIRE_MONTHS = 3
|
||||
IGNORED_POOLS = []
|
||||
|
||||
# Flask
|
||||
IP = '127.0.0.1'
|
||||
PORT = '5000'
|
||||
SERVER_NAME = 'proxstar.csh.rit.edu'
|
||||
SECRET_KEY = ''
|
||||
|
||||
# OIDC
|
||||
OIDC_ISSUER = 'https://sso.csh.rit.edu/realms/csh'
|
||||
OIDC_CLIENT_CONFIG = {
|
||||
'client_id': 'proxstar',
|
||||
'client_secret': '',
|
||||
'post_logout_redirect_uris': ['https://proxstar.csh.rit.edu/logout']
|
||||
}
|
||||
|
||||
# Proxmox
|
||||
PROXMOX_HOST = ''
|
||||
PROXMOX_USER = ''
|
||||
PROXMOX_PASS = ''
|
||||
PROXMOX_ISO_STORAGE = ''
|
||||
PROXMOX_ISO_STORAGE = 'nfs-iso'
|
||||
|
||||
# STARRS
|
||||
STARRS_DB_HOST = ''
|
||||
STARRS_DB_NAME = ''
|
||||
STARRS_DB_USER = ''
|
||||
STARRS_DB_PASS = ''
|
||||
STARRS_USER = 'proxstar'
|
||||
STARRS_IP_RANGE = ''
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue