Update to 2023-04-11 15:00

This commit is contained in:
Daniel Berteaud
2023-04-11 15:00:42 +02:00
parent 2a3d56fddc
commit 138c0bf3b2
55 changed files with 113 additions and 79 deletions

View File

@@ -23,6 +23,10 @@ server {
add_header Cache-Control "no-cache, max-age=0" always;
}
location /api/export {
proxy_pass http://localhost:{{ penpot_ports['exporter'] }};
}
location /api {
proxy_pass http://localhost:{{ penpot_ports['backend'] }}/api;
}
@@ -31,10 +35,6 @@ server {
proxy_pass http://localhost:{{ penpot_ports['backend'] }}/dbg;
}
location /export {
proxy_pass http://localhost:{{ penpot_ports['exporter'] }};
}
location /ws/notifications {
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';

View File

@@ -2,7 +2,7 @@
set -eo pipefail
PGPASSWORD='{{ penpot_db_pass }}' /usr/pgsql-14/bin/pg_dump \
PGPASSWORD='{{ penpot_db_pass }}' /usr/pgsql-15/bin/pg_dump \
--clean \
--create \
--username={{ penpot_db_user | quote }} \