Compare commits

..

5 Commits

Author SHA1 Message Date
Tobias
458ef55819 Update Gotenberg installation script for Go version 2026-09-12 10:59:29 +02:00
Tobias
df41b4afd9 Fix formatting and add Go version setup in script 2026-09-12 10:58:52 +02:00
Tobias
403842dac2 Implement unoconverter update in gotenberg.sh 2026-09-12 10:48:38 +02:00
Tobias
edda6b98f7 Update messages in gotenberg.sh for clarity 2026-09-12 10:46:42 +02:00
push-app-to-main[bot]
8a96be5776 Add gotenberg (ct) 2026-09-12 08:44:25 +00:00
5 changed files with 5 additions and 18 deletions

View File

@@ -542,15 +542,10 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
## 2026-09-12
### 🆕 New Scripts
- gotenberg ([#17205](https://github.com/community-scripts/ProxmoxVE/pull/17205))
### 🚀 Updated Scripts
- #### 🐞 Bug Fixes
- poznote: serve from src/public docroot [@MickLesk](https://github.com/MickLesk) ([#17187](https://github.com/community-scripts/ProxmoxVE/pull/17187))
- calibre-web: use calibreweb release identifier to avoid version file collision [@MickLesk](https://github.com/MickLesk) ([#17186](https://github.com/community-scripts/ProxmoxVE/pull/17186))
## 2026-09-11

View File

@@ -169,13 +169,9 @@ function update_script() {
if ((BRIDGE_UPDATE == 0)); then
sed -i 's|^ExecStart=.*|ExecStart=uv run --no-sync -- granian --interface asginl --ws --loop uvloop "paperless.asgi:application"|' /etc/systemd/system/paperless-webserver.service
grep -q "document_index reindex" /etc/systemd/system/paperless-webserver.service ||
sed -i '/^ExecStart=/i ExecStartPre=uv run --no-sync -- python manage.py document_index reindex --if-needed --no-progress-bar' /etc/systemd/system/paperless-webserver.service
sed -i '/^ExecStart=/i ExecStartPre=uv run -- python manage.py document_index reindex --if-needed --no-progress-bar' /etc/systemd/system/paperless-webserver.service
$STD systemctl daemon-reload
fi
for svc in consumer scheduler task-queue webserver; do
unit="/etc/systemd/system/paperless-${svc}.service"
[[ -f "$unit" ]] && sed -i 's|uv run -- |uv run --no-sync -- |g' "$unit"
done
$STD systemctl daemon-reload
cd /opt/paperless
$STD uv sync --all-extras
cd /opt/paperless/src

View File

@@ -68,7 +68,7 @@ map \$uri \$poznote_coop {
server {
listen 8040;
root /var/www/html/public;
root /var/www/html;
index index.php index.html;
gzip on;
@@ -144,12 +144,10 @@ server {
}
location ~ ^/data/users/[0-9]+/backgrounds/ {
root /var/www/html;
try_files \$uri =404;
}
location ~ ^/data/css/[A-Za-z0-9._-]+\.css$ {
root /var/www/html;
try_files \$uri =404;
}

View File

@@ -151,7 +151,7 @@ Requires=redis.service
[Service]
WorkingDirectory=/opt/paperless/src
#ExecStartPre=uv run --no-sync -- python manage.py document_index reindex --if-needed --no-progress-bar
#ExecStartPre=uv run -- python manage.py document_index reindex --if-needed --no-progress-bar
ExecStart=uv run --no-sync -- granian --interface asginl --ws --loop uvloop "paperless.asgi:application"
Environment=GRANIAN_HOST=::
Environment=GRANIAN_PORT=8000

View File

@@ -46,7 +46,7 @@ map \$uri \$poznote_coop {
server {
listen 8040;
root /var/www/html/public;
root /var/www/html;
index index.php index.html;
gzip on;
@@ -122,12 +122,10 @@ server {
}
location ~ ^/data/users/[0-9]+/backgrounds/ {
root /var/www/html;
try_files \$uri =404;
}
location ~ ^/data/css/[A-Za-z0-9._-]+\.css$ {
root /var/www/html;
try_files \$uri =404;
}