mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 13:38:13 -05:00
update comments
This commit is contained in:
parent
053a89fdb0
commit
edac914ebd
@ -155,18 +155,22 @@ namespace Bit.Setup
|
|||||||
|
|
||||||
[Description("Auto-generate the `./docker/docker-compose.yml` config file.\n" +
|
[Description("Auto-generate the `./docker/docker-compose.yml` config file.\n" +
|
||||||
"WARNING: Disabling generated config files can break future updates. You will be\n" +
|
"WARNING: Disabling generated config files can break future updates. You will be\n" +
|
||||||
"responsible for maintaining this config file.")]
|
"responsible for maintaining this config file.\n" +
|
||||||
|
"Template: https://github.com/bitwarden/core/blob/master/util/Setup/Templates/DockerCompose.hbs")]
|
||||||
public bool GenerateComposeConfig { get; set; } = true;
|
public bool GenerateComposeConfig { get; set; } = true;
|
||||||
|
|
||||||
[Description("Auto-generate the `./nginx/default.conf` file.\n" +
|
[Description("Auto-generate the `./nginx/default.conf` file.\n" +
|
||||||
"WARNING: Disabling generated config files can break future updates. You will be\n" +
|
"WARNING: Disabling generated config files can break future updates. You will be\n" +
|
||||||
"responsible for maintaining this config file.")]
|
"responsible for maintaining this config file.\n" +
|
||||||
|
"Template: https://github.com/bitwarden/core/blob/master/util/Setup/Templates/NginxConfig.hbs")]
|
||||||
public bool GenerateNginxConfig { get; set; } = true;
|
public bool GenerateNginxConfig { get; set; } = true;
|
||||||
|
|
||||||
[Description("Docker compose file port mapping for HTTP. Leave empty for remove the port mapping.")]
|
[Description("Docker compose file port mapping for HTTP. Leave empty for remove the port mapping.\n" +
|
||||||
|
"Learn more: https://docs.docker.com/compose/compose-file/#ports")]
|
||||||
public string HttpPort { get; set; } = "80";
|
public string HttpPort { get; set; } = "80";
|
||||||
|
|
||||||
[Description("Docker compose file port mapping for HTTPS. Leave empty for remove the port mapping.")]
|
[Description("Docker compose file port mapping for HTTPS. Leave empty for remove the port mapping.\n" +
|
||||||
|
"Learn more: https://docs.docker.com/compose/compose-file/#ports")]
|
||||||
public string HttpsPort { get; set; } = "443";
|
public string HttpsPort { get; set; } = "443";
|
||||||
|
|
||||||
[Description("Configure Nginx for SSL.")]
|
[Description("Configure Nginx for SSL.")]
|
||||||
@ -176,24 +180,24 @@ namespace Bit.Setup
|
|||||||
public bool SslManagedLetsEncrypt { get; set; }
|
public bool SslManagedLetsEncrypt { get; set; }
|
||||||
|
|
||||||
[Description("The actual certificate. (Required if using SSL without managed Let's Encrypt)\n" +
|
[Description("The actual certificate. (Required if using SSL without managed Let's Encrypt)\n" +
|
||||||
"Note: Path must be relative to the container's ssl directory. The `./ssl` host directory is\n" +
|
"Note: Path uses the container's ssl directory. The `./ssl` host directory is mapped to\n" +
|
||||||
"mapped to `/etc/ssl` within the container.")]
|
"`/etc/ssl` within the container.")]
|
||||||
public string SslCertificatePath { get; set; }
|
public string SslCertificatePath { get; set; }
|
||||||
|
|
||||||
[Description("The certificate's private key. (Required if using SSL without managed Let's Encrypt)\n" +
|
[Description("The certificate's private key. (Required if using SSL without managed Let's Encrypt)\n" +
|
||||||
"Note: Path must be relative to the container's ssl directory. The `./ssl` host directory is\n" +
|
"Note: Path uses the container's ssl directory. The `./ssl` host directory is mapped to\n" +
|
||||||
"mapped to `/etc/ssl` within the container.")]
|
"`/etc/ssl` within the container.")]
|
||||||
public string SslKeyPath { get; set; }
|
public string SslKeyPath { get; set; }
|
||||||
|
|
||||||
[Description("If the certificate is trusted by a CA, you should provide the CA's certificate.\n" +
|
[Description("If the certificate is trusted by a CA, you should provide the CA's certificate.\n" +
|
||||||
"Note: Path must be relative to the container's ssl directory. The `./ssl` host directory is\n" +
|
"Note: Path uses the container's ssl directory. The `./ssl` host directory is mapped to\n" +
|
||||||
"mapped to `/etc/ssl` within the container.")]
|
"`/etc/ssl` within the container.")]
|
||||||
public string SslCaPath { get; set; }
|
public string SslCaPath { get; set; }
|
||||||
|
|
||||||
[Description("Diffie Hellman ephemeral parameters\n" +
|
[Description("Diffie Hellman ephemeral parameters\n" +
|
||||||
"Learn more: https://security.stackexchange.com/q/94390/79072\n" +
|
"Learn more: https://security.stackexchange.com/q/94390/79072\n" +
|
||||||
"Note: Path must be relative to the container's ssl directory. The `./ssl` host directory is\n" +
|
"Note: Path uses the container's ssl directory. The `./ssl` host directory is mapped to\n" +
|
||||||
"mapped to `/etc/ssl` within the container.")]
|
"`/etc/ssl` within the container.")]
|
||||||
public string SslDiffieHellmanPath { get; set; }
|
public string SslDiffieHellmanPath { get; set; }
|
||||||
|
|
||||||
[Description("Communicate with the Bitwarden push relay service (push.bitwarden.com) for mobile\n" +
|
[Description("Communicate with the Bitwarden push relay service (push.bitwarden.com) for mobile\n" +
|
||||||
|
@ -1,9 +1,12 @@
|
|||||||
# https://docs.docker.com/compose/compose-file/
|
#
|
||||||
|
# Reference: https://docs.docker.com/compose/compose-file/
|
||||||
#
|
#
|
||||||
# WARNING: This file is generated. Do not make changes to this file.
|
#########################################################################
|
||||||
# They will be overwritten on update. If you want to make additions to
|
# WARNING: This file is generated. Do not make changes to this file. #
|
||||||
# this file, you can create a `docker-compose.override.yml` file in the
|
# They will be overwritten on update. If you want to make additions to #
|
||||||
# same directory and it will be merged into this file at runtime.
|
# this file, you can create a `docker-compose.override.yml` file in the #
|
||||||
|
# same directory and it will be merged into this file at runtime. #
|
||||||
|
#########################################################################
|
||||||
|
|
||||||
version: '3'
|
version: '3'
|
||||||
|
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
# WARNING: This file is generated. Do not make changes to this file.
|
#########################################################################
|
||||||
# They will be overwritten on update.
|
# WARNING: This file is generated. Do not make changes to this file. #
|
||||||
|
# They will be overwritten on update. #
|
||||||
|
#########################################################################
|
||||||
|
|
||||||
server {
|
server {
|
||||||
listen 8080 default_server;
|
listen 8080 default_server;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user