Compare commits

...

5 Commits

Author SHA1 Message Date
CanbiZ
e9c9c4fb4c
Merge 20e9aa3302 into 8c1b48453c 2024-12-13 09:54:29 -03:00
community-scripts-pr-app[bot]
8c1b48453c
Update CHANGELOG.md (#806)
Some checks are pending
Create Changelog Pull Request / update-changelog-pull-request (push) Waiting to run
Frontend CI/CD / deploy (push) Blocked by required conditions
Frontend CI/CD / build (push) Waiting to run
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-12-13 13:53:18 +01:00
Håvard Gjøby Thom
ae0684b696
Fix config bug in Alpine Vaultwarden (#775) 2024-12-13 13:33:34 +01:00
CanbiZ
20e9aa3302
Fix Update Script 2024-12-10 09:46:52 +01:00
CanbiZ
15b6b5f763
Update nginxproxymanager-install.sh 2024-12-10 09:46:24 +01:00
5 changed files with 18 additions and 8 deletions

View File

@ -16,6 +16,14 @@ All LXC instances created using this repository come pre-installed with Midnight
> [!IMPORTANT]
Do not break established syntax in this file, as it is automatically updated by a Github Workflow
## 2024-12-13
### Changed
### 🚀 Updated Scripts
- Fix config bug in Alpine Vaultwarden [@havardthom](https://github.com/havardthom) ([#775](https://github.com/community-scripts/ProxmoxVE/pull/775))
## 2024-12-12
### Changed

View File

@ -140,9 +140,9 @@ function update_script() {
msg_info "Building Frontend"
cd ./frontend
pnpm install &>/dev/null
pnpm upgrade &>/dev/null
pnpm run build &>/dev/null
yarn cache clean --silent --force &>/dev/null
yarn install --silent --network-timeout=30000 &>/dev/null
yarn build &>/dev/null
cp -r dist/* /app/frontend
cp -r app-images/* /app/frontend/images
msg_ok "Built Frontend"

View File

@ -25,7 +25,9 @@ msg_ok "Installed Dependencies"
msg_info "Installing Alpine-Vaultwarden"
$STD apk add vaultwarden
sed -i -e 's/# export ADMIN_TOKEN=.*/export ADMIN_TOKEN='\'''\''/' -e '/^# export ROCKET_ADDRESS=0\.0\.0\.0/s/^# //' -e 's|export WEB_VAULT_ENABLED=.*|export WEB_VAULT_ENABLED=true|' /etc/conf.d/vaultwarden
sed -i -e 's|export WEB_VAULT_ENABLED=.*|export WEB_VAULT_ENABLED=true|' /etc/conf.d/vaultwarden
echo -e "export ADMIN_TOKEN=''" >>/etc/conf.d/vaultwarden
echo -e "export ROCKET_ADDRESS=0.0.0.0" >>/etc/conf.d/vaultwarden
msg_ok "Installed Alpine-Vaultwarden"
msg_info "Installing Web-Vault"

View File

@ -141,9 +141,9 @@ msg_ok "Set up Enviroment"
msg_info "Building Frontend"
cd ./frontend
$STD pnpm install
$STD pnpm upgrade
$STD pnpm run build
$STD yarn cache clean --silent --force
$STD yarn install --silent --network-timeout=30000
$STD yarn build
cp -r dist/* /app/frontend
cp -r app-images/* /app/frontend/images
msg_ok "Built Frontend"

View File

@ -47,7 +47,7 @@
"type": "warning"
},
{
"text": "Build Settings for normal LXC: 6GB RAM - 6GB Storage - 4vCPU",
"text": "To set the Admin Token, run the command below (or type update) in the LXC Console.",
"type": "info"
}
]