1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 07:36:14 -05:00

Add captcha option to Nginx config (#1509)

* Add captcha option to Nginx config

* Fix formatting
This commit is contained in:
Matt Gibson
2021-08-13 09:52:26 -04:00
committed by GitHub
parent 824645250e
commit 6d18f44029
3 changed files with 15 additions and 0 deletions

View File

@ -68,6 +68,7 @@ namespace Bit.Setup
public TemplateModel(Context context)
{
Captcha = context.Config.Captcha;
Ssl = context.Config.Ssl;
Domain = context.Config.Domain;
Url = context.Config.Url;
@ -114,6 +115,7 @@ namespace Bit.Setup
}
}
public bool Captcha { get; set; }
public bool Ssl { get; set; }
public string Domain { get; set; }
public string Url { get; set; }