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:
parent
897c354577
commit
7ff91227a6
@ -1,5 +1,6 @@
|
||||
{
|
||||
"globalSettings": {
|
||||
"selfHosted": false,
|
||||
"siteName": "bitwarden",
|
||||
"baseVaultUri": "http://localhost:4001/#",
|
||||
"baseApiUri": "http://localhost:4000",
|
||||
|
@ -1,5 +1,6 @@
|
||||
{
|
||||
"globalSettings": {
|
||||
"selfHosted": false,
|
||||
"siteName": "bitwarden",
|
||||
"baseVaultUri": "http://localhost:4001/#",
|
||||
"baseApiUri": "http://localhost:4000",
|
||||
|
@ -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; }
|
||||
|
@ -1,5 +1,6 @@
|
||||
{
|
||||
"globalSettings": {
|
||||
"selfHosted": false,
|
||||
"siteName": "bitwarden",
|
||||
"baseVaultUri": "http://localhost:4001/#",
|
||||
"baseApiUri": "http://localhost:4000",
|
||||
|
Loading…
Reference in New Issue
Block a user