1
0
mirror of https://github.com/bitwarden/server.git synced 2025-02-16 01:51:21 +01:00

self hosted setting

This commit is contained in:
Kyle Spearrin 2017-08-02 17:02:55 -04:00
parent 897c354577
commit 7ff91227a6
4 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,6 @@
{
"globalSettings": {
"selfHosted": false,
"siteName": "bitwarden",
"baseVaultUri": "http://localhost:4001/#",
"baseApiUri": "http://localhost:4000",

View File

@ -1,5 +1,6 @@
{
"globalSettings": {
"selfHosted": false,
"siteName": "bitwarden",
"baseVaultUri": "http://localhost:4001/#",
"baseApiUri": "http://localhost:4000",

View File

@ -2,6 +2,7 @@
{
public class GlobalSettings
{
public bool SelfHosted { get; set; }
public virtual string SiteName { get; set; }
public virtual string BaseVaultUri { get; set; }
public virtual string BaseApiUri { get; set; }

View File

@ -1,5 +1,6 @@
{
"globalSettings": {
"selfHosted": false,
"siteName": "bitwarden",
"baseVaultUri": "http://localhost:4001/#",
"baseApiUri": "http://localhost:4000",