mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2025-11-08 12:22:49 +00:00
Compare commits
6 Commits
2025-11-07
...
github-act
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
286b4429b3 | ||
|
|
0fb4e4ad8c | ||
|
|
5d381910a3 | ||
|
|
9f0720dc91 | ||
|
|
85456ff3f3 | ||
|
|
822ea4b267 |
@@ -12,6 +12,14 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
|
|||||||
|
|
||||||
## 2025-11-08
|
## 2025-11-08
|
||||||
|
|
||||||
|
### 🚀 Updated Scripts
|
||||||
|
|
||||||
|
- #### 🐞 Bug Fixes
|
||||||
|
|
||||||
|
- Firefly: Fix missing command in update script [@tremor021](https://github.com/tremor021) ([#8972](https://github.com/community-scripts/ProxmoxVE/pull/8972))
|
||||||
|
- MongoDB: Remove unused message [@tremor021](https://github.com/tremor021) ([#8969](https://github.com/community-scripts/ProxmoxVE/pull/8969))
|
||||||
|
- Set TZ=Etc/UTC in Ghostfolio installation script [@LuloDev](https://github.com/LuloDev) ([#8961](https://github.com/community-scripts/ProxmoxVE/pull/8961))
|
||||||
|
|
||||||
## 2025-11-07
|
## 2025-11-07
|
||||||
|
|
||||||
### 🆕 New Scripts
|
### 🆕 New Scripts
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ function update_script() {
|
|||||||
find /opt/firefly/storage -type f -exec chmod 664 {} \;
|
find /opt/firefly/storage -type f -exec chmod 664 {} \;
|
||||||
mkdir -p /opt/firefly/storage/framework/{cache/data,sessions,views}
|
mkdir -p /opt/firefly/storage/framework/{cache/data,sessions,views}
|
||||||
$STD sudo -u www-data php /opt/firefly/artisan cache:clear
|
$STD sudo -u www-data php /opt/firefly/artisan cache:clear
|
||||||
|
cd /opt/firefly
|
||||||
$STD php artisan migrate --seed --force
|
$STD php artisan migrate --seed --force
|
||||||
$STD php artisan cache:clear
|
$STD php artisan cache:clear
|
||||||
$STD php artisan view:clear
|
$STD php artisan view:clear
|
||||||
|
|||||||
@@ -78,6 +78,7 @@ JWT_SECRET_KEY=$JWT_SECRET_KEY
|
|||||||
NODE_ENV=production
|
NODE_ENV=production
|
||||||
PORT=3333
|
PORT=3333
|
||||||
HOST=0.0.0.0
|
HOST=0.0.0.0
|
||||||
|
TZ=Etc/UTC
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
if [[ -n "${COINGECKO_DEMO_KEY:-}" ]]; then
|
if [[ -n "${COINGECKO_DEMO_KEY:-}" ]]; then
|
||||||
|
|||||||
@@ -20,13 +20,7 @@ else
|
|||||||
MONGO_VERSION="7.0" setup_mongodb
|
MONGO_VERSION="7.0" setup_mongodb
|
||||||
fi
|
fi
|
||||||
sed -i 's/bindIp: 127.0.0.1/bindIp: 0.0.0.0/' /etc/mongod.conf
|
sed -i 's/bindIp: 127.0.0.1/bindIp: 0.0.0.0/' /etc/mongod.conf
|
||||||
msg_ok "Installed MongoDB $MONGO_VERSION"
|
|
||||||
|
|
||||||
motd_ssh
|
motd_ssh
|
||||||
customize
|
customize
|
||||||
|
cleanup_lxc
|
||||||
msg_info "Cleaning up"
|
|
||||||
$STD apt -y autoremove
|
|
||||||
$STD apt -y autoclean
|
|
||||||
$STD apt -y clean
|
|
||||||
msg_ok "Cleaned"
|
|
||||||
|
|||||||
Reference in New Issue
Block a user