Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM vaultwarden/server:1.35.2-alpine
FROM vaultwarden/server:1.35.3-alpine

RUN apk update && \
apk add --no-cache \
Expand Down
20 changes: 17 additions & 3 deletions docker_entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,38 @@ EOF
cat << EOF > /data/start9/stats.yaml
version: 2
data:
"Local Server URL":
type: string
value: "https://$LAN_ADDRESS"
description: "The URL for accessing your Vaultwarden server via your LAN"
copyable: true
qr: false
masked: false
"Tor Server URL":
type: string
value: "https://$TOR_ADDRESS"
description: "The URL for accessing your Vaultwarden server via Tor"
copyable: true
qr: false
masked: false
"Admin Token":
type: string
value: "$ADMIN_TOKEN"
description: "Authentication token for logging into your admin dashboard."
description: "Authentication token for logging into your admin dashboard"
copyable: true
qr: false
masked: true
"Local Admin URL":
type: string
value: "https://$LAN_ADDRESS/admin"
description: "The URL for accessing your admin dashboard via your LAN."
description: "The URL for accessing your admin dashboard via your LAN"
copyable: true
qr: false
masked: false
"Tor Admin URL":
type: string
value: "https://$TOR_ADDRESS/admin"
description: "The URL for accessing your admin dashboard via Tor."
description: "The URL for accessing your admin dashboard via Tor"
copyable: true
qr: false
masked: false
Expand Down
2 changes: 1 addition & 1 deletion instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Vaultwarden is a _self-hosted_ password manager, which means your passwords phys

## Connecting to Your Vaultwarden Server

You can use Vaultwarden simply by visitng your unique .local or .onion address in the browser. You can also use a variety of Bitwarden clients, including browsers extensions, desktop apps, and mobile apps. For a complete list of options and detailed instructions, see the [docs](https://docs.start9.com/latest/user-manual/service-guides/vaultwarden).
You can use Vaultwarden simply by visitng your unique .local or .onion address in the browser. You can also use a variety of Bitwarden clients, including browsers extensions, desktop apps, and mobile apps. For a complete list of options and detailed instructions, see the [docs](https://docs.start9.com/latest/service-guides/vaultwarden).

## Using The Admin Portal

Expand Down
6 changes: 3 additions & 3 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"id": "vaultwarden",
"title": "Vaultwarden",
"version": "1.35.2",
"release-notes": "* Updated to the latest upstream code:\n Individual release notes: [v1.35.0](https://github.com/dani-garcia/vaultwarden/releases/tag/1.35.0), [v1.35.1](https://github.com/dani-garcia/vaultwarden/releases/tag/1.35.1), [v1.35.2](https://github.com/dani-garcia/vaultwarden/releases/tag/1.35.2), Full detailed change log available [here](https://github.com/dani-garcia/vaultwarden/compare/1.34.3...1.35.2)",
"version": "1.35.3",
"release-notes": "* Updated to the latest upstream code containing a security fix for large orgs:\n Release notes: [v1.35.3](https://github.com/dani-garcia/vaultwarden/releases/tag/1.35.3)",
"license": "AGPLv3",
"wrapper-repo": "https://github.com/Start9Labs/vaultwarden-startos",
"upstream-repo": "https://github.com/dani-garcia/vaultwarden",
Expand Down Expand Up @@ -64,7 +64,7 @@
"interfaces": {
"main": {
"name": "Web Interface/Bitwarden Protocol",
"description": "Main user interface for interacting with Vaultwarden in a web browser. Also serves the bitwarden protocol.",
"description": "Do not use the Tor Address below. Instead, look in Vaultwarden's Properties section for your Tor server URL.",
"tor-config": {
"port-mapping": {
"80": "8080",
Expand Down
4 changes: 2 additions & 2 deletions scripts/procedures/migrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { manifest } from "../generated/manifest.ts";

export const migration: T.ExpectedExports.migration = migrations.fromMapping(
{
// 1.35.2 No migration needed
// 1.35.3 No migration needed
},
manifest.version
manifest.version,
);