mirror of
https://github.com/gophish/gophish
synced 2024-11-12 23:37:11 +00:00
78e9a51168
Enables the user to add addresses that they expect incoming connections to come from. Helpful in cases where TLS termination is handled by a load balancer upstream, rather than the application itself.
23 lines
460 B
JSON
23 lines
460 B
JSON
{
|
|
"admin_server": {
|
|
"listen_url": "127.0.0.1:3333",
|
|
"use_tls": true,
|
|
"cert_path": "gophish_admin.crt",
|
|
"key_path": "gophish_admin.key",
|
|
"trusted_origins": []
|
|
},
|
|
"phish_server": {
|
|
"listen_url": "0.0.0.0:80",
|
|
"use_tls": false,
|
|
"cert_path": "example.crt",
|
|
"key_path": "example.key"
|
|
},
|
|
"db_name": "sqlite3",
|
|
"db_path": "gophish.db",
|
|
"migrations_prefix": "db/db_",
|
|
"contact_address": "",
|
|
"logging": {
|
|
"filename": "",
|
|
"level": ""
|
|
}
|
|
}
|