Update 'config.py'

This commit is contained in:
2019-11-29 21:56:59 -05:00
parent 5aa382f94e
commit 0d5ca10133

View File

@@ -1,23 +1,15 @@
#!/usr/bin/env python #!/usr/bin/env python
# Descriptive name for the host # FQDN for the host containing the luks volume with the recovery keys, can use IP too
HOST_SHORTNAME = 'freenas' KEY_HOST = 'pi.local'
# FQDN for the host, can use IP too # Username to use to login to the key host
HOSTNAME = 'freenas.local' KEY_HOST_USER = 'root'
# Location of the luks volume file
LUKS_VOLUME = '/root/secure.luks'
# Root password for the system, api is only able to use basic auth with the root account # Root password for the system, api is only able to use basic auth with the root account
ROOT_PASSWORD = 'my super secret password' FREENAS_ROOT_PASSWORD = 'my super secret password'
# path to the CA certificate to verify the ssl cert. If you don't wish to verify, make this False # path to the CA certificate to verify the ssl cert on FreeNAS. If you don't wish to verify, make this False
CA_CERT_PATH = '/root/ca.crt' CA_CERT_PATH = 'False'
# pool names and their encryption keys, the index is the pool name and the value is the encryption passphrase for the pool # pool names, this makes things easy when looking for the keys in the Luks volume
# Ex: ENCRYPTION_PASSPHRASES = {'zroot': 'super secret password goes here'} this would be the zroot pool and password to unlock it POOL_NAMES = {'POOL_NAME','POOL_NAME2'}
ENCRYPTION_PASSPHRASES = { # Luks encryption password
'POOL_NAME': 'ENCRYPTION_PASSPHRASE', LUKS_PASSWORD = "<PUT PASSWORD HERE>"
'POOL_NAME2': 'ENCRYPTION_PASSPHRASE2'
}
# STMP Settings
SMTP_SERVER = 'smtp.gmail.com'
SMTP_PORT = 587
SMTP_SSL = True
SMTP_FROM = 'admin@gmail.com'
SMTP_USERNAME = 'admin@gmail.com'
SMTP_PASSWORD = 'super secret password goes here'