Merge branch 'staging' of github.com:xwiki-labs/cryptpad into staging
commit
af8bda0755
|
@ -0,0 +1,23 @@
|
|||
[Unit]
|
||||
Description=CryptPad API server
|
||||
|
||||
[Service]
|
||||
ExecStart=/home/cryptpad/.nvm/versions/node/v12.14.0/bin/node /home/cryptpad/cryptpad/server.js
|
||||
# modify to match the location of your cryptpad repository
|
||||
WorkingDirectory=/home/cryptpad/cryptpad
|
||||
|
||||
Restart=always
|
||||
# Restart service after 10 seconds if node service crashes
|
||||
RestartSec=2
|
||||
|
||||
# Output to syslog
|
||||
StandardOutput=syslog
|
||||
StandardError=syslog
|
||||
SyslogIdentifier=cryptpad
|
||||
User=cryptpad
|
||||
Group=cryptpad
|
||||
# modify to match your working directory
|
||||
Environment='PWD="/home/cryptpad/cryptpad/cryptpad"'
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
|
@ -103,7 +103,7 @@ server {
|
|||
# they unfortunately still require exceptions to the sandboxing to work correctly.
|
||||
if ($uri = "/pad/inner.html") { set $unsafe 1; }
|
||||
if ($uri = "/sheet/inner.html") { set $unsafe 1; }
|
||||
if ($uri = "/common/onlyoffice/web-apps/apps/spreadsheeteditor/main/index.html") { set $unsafe 1; }
|
||||
if ($uri ~ ^\/common\/onlyoffice\/.*\/index\.html.*$) { set $unsafe 1; }
|
||||
|
||||
# everything except the sandbox domain is a privileged scope, as they might be used to handle keys
|
||||
if ($host != sandbox.cryptpad.info) { set $unsafe 0; }
|
||||
|
|
|
@ -1288,8 +1288,11 @@
|
|||
"burnAfterReading_warningAccess": "Dieses Dokument wird sich selbst zerstören. Wenn du die Schaltfläche unten anklickst, kannst du dir den Inhalt einmal anzeigen lassen. Anschließend wird er endgültig gelöscht. Wenn du das Fenster schließt, kannst du nicht mehr auf den Inhalt zugreifen. Solltest du darauf nicht vorbereitet sein, schließe das Fenster und komme später zurück.",
|
||||
"burnAfterReading_proceed": "Ansehen und Löschen",
|
||||
"burnAfterReading_warningDeleted": "Dieses Pad wurde endgültig gelöscht. Nachdem du das Fenster geschlossen hast, wirst du darauf nicht mehr zugreifen können.",
|
||||
"oo_exportChrome": "",
|
||||
"oo_invalidFormat": "",
|
||||
"oo_importInProgress": "",
|
||||
"oo_exportInProgress": ""
|
||||
"oo_exportChrome": "Der Export in Formate von Microsoft Office ist derzeit nur in Google Chrome verfügbar.",
|
||||
"oo_invalidFormat": "Diese Datei kann nicht importiert werden",
|
||||
"oo_importInProgress": "Import wird durchgeführt",
|
||||
"oo_exportInProgress": "Export wird durchgeführt",
|
||||
"oo_sheetMigration_loading": "Deine Tabelle wird auf die neueste Version aktualisiert",
|
||||
"oo_sheetMigration_complete": "Eine aktualisierte Version ist verfügbar. Klicke auf OK, um neu zu laden.",
|
||||
"oo_sheetMigration_anonymousEditor": "Die Bearbeitung dieser Tabelle ist für anonyme Benutzer deaktiviert, bis sie von einem registrierten Benutzer auf die neueste Version aktualisiert wird."
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue