1
0
mirror of https://github.com/bitwarden/server.git synced 2024-12-23 17:07:42 +01:00

Replace company.com with example.com (#502)

This commit is contained in:
Sandro Jäckel 2019-05-23 02:07:39 +02:00 committed by Kyle Spearrin
parent 5d4323bf62
commit 3feaaf8f01
5 changed files with 5 additions and 5 deletions

View File

@ -96,7 +96,7 @@ build_script:
echo "Make docker stubs" echo "Make docker stubs"
STUB_OUTPUT=$(pwd)/docker-stub STUB_OUTPUT=$(pwd)/docker-stub
docker run -i --rm --name setup -v $STUB_OUTPUT:/bitwarden bitwarden/setup:dev \ docker run -i --rm --name setup -v $STUB_OUTPUT:/bitwarden bitwarden/setup:dev \
dotnet Setup.dll -stub 1 -install 1 -domain bitwarden.company.com -os lin dotnet Setup.dll -stub 1 -install 1 -domain bitwarden.example.com -os lin
sudo chown -R appveyor:appveyor $STUB_OUTPUT sudo chown -R appveyor:appveyor $STUB_OUTPUT
rm -rf $STUB_OUTPUT/letsencrypt rm -rf $STUB_OUTPUT/letsencrypt
rm $STUB_OUTPUT/env/uid.env $STUB_OUTPUT/config.yml rm $STUB_OUTPUT/env/uid.env $STUB_OUTPUT/config.yml

View File

@ -36,7 +36,7 @@ if("${env:BITWARDEN_CERTBOT_HTTPS_PORT}" -ne "") {
function Install() { function Install() {
[string]$letsEncrypt = "n" [string]$letsEncrypt = "n"
Write-Host "(!) " -f cyan -nonewline Write-Host "(!) " -f cyan -nonewline
[string]$domain = $( Read-Host "Enter the domain name for your Bitwarden instance (ex. bitwarden.company.com)" ) [string]$domain = $( Read-Host "Enter the domain name for your Bitwarden instance (ex. bitwarden.example.com)" )
echo "" echo ""
if ($domain -eq "") { if ($domain -eq "") {

View File

@ -62,7 +62,7 @@ fi
function install() { function install() {
LETS_ENCRYPT="n" LETS_ENCRYPT="n"
echo -e -n "${CYAN}(!)${NC} Enter the domain name for your Bitwarden instance (ex. bitwarden.company.com): " echo -e -n "${CYAN}(!)${NC} Enter the domain name for your Bitwarden instance (ex. bitwarden.example.com): "
read DOMAIN read DOMAIN
echo "" echo ""

View File

@ -9,7 +9,7 @@ namespace Bit.Core.Models.Api.Public
/// <summary> /// <summary>
/// The member's email address. /// The member's email address.
/// </summary> /// </summary>
/// <example>jsmith@company.com</example> /// <example>jsmith@example.com</example>
[Required] [Required]
[EmailAddress] [EmailAddress]
public string Email { get; set; } public string Email { get; set; }

View File

@ -64,7 +64,7 @@ namespace Bit.Core.Models.Api.Public
/// <summary> /// <summary>
/// The member's email address. /// The member's email address.
/// </summary> /// </summary>
/// <example>jsmith@company.com</example> /// <example>jsmith@example.com</example>
[Required] [Required]
public string Email { get; set; } public string Email { get; set; }
/// <summary> /// <summary>