1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 13:08:17 -05:00

update comments

This commit is contained in:
Kyle Spearrin 2018-08-30 23:06:40 -04:00
parent 053a89fdb0
commit edac914ebd
3 changed files with 28 additions and 19 deletions

View File

@ -155,18 +155,22 @@ namespace Bit.Setup
[Description("Auto-generate the `./docker/docker-compose.yml` config file.\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;
[Description("Auto-generate the `./nginx/default.conf` file.\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;
[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";
[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";
[Description("Configure Nginx for SSL.")]
@ -176,24 +180,24 @@ namespace Bit.Setup
public bool SslManagedLetsEncrypt { get; set; }
[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" +
"mapped to `/etc/ssl` within the container.")]
"Note: Path uses the container's ssl directory. The `./ssl` host directory is mapped to\n" +
"`/etc/ssl` within the container.")]
public string SslCertificatePath { get; set; }
[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" +
"mapped to `/etc/ssl` within the container.")]
"Note: Path uses the container's ssl directory. The `./ssl` host directory is mapped to\n" +
"`/etc/ssl` within the container.")]
public string SslKeyPath { get; set; }
[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" +
"mapped to `/etc/ssl` within the container.")]
"Note: Path uses the container's ssl directory. The `./ssl` host directory is mapped to\n" +
"`/etc/ssl` within the container.")]
public string SslCaPath { get; set; }
[Description("Diffie Hellman ephemeral parameters\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" +
"mapped to `/etc/ssl` within the container.")]
"Note: Path uses the container's ssl directory. The `./ssl` host directory is mapped to\n" +
"`/etc/ssl` within the container.")]
public string SslDiffieHellmanPath { get; set; }
[Description("Communicate with the Bitwarden push relay service (push.bitwarden.com) for mobile\n" +

View File

@ -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
# 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.
#########################################################################
# 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 #
# 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'

View File

@ -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 {
listen 8080 default_server;