summaryrefslogtreecommitdiffhomepage
path: root/debian
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2023-01-21 19:05:43 +0100
committerRoland Reichwein <mail@reichwein.it>2023-01-21 19:05:43 +0100
commitc464265f60ddd367786b08f5d49cd7a6d650b7d6 (patch)
treed2c747cc041a92d38ac1d25eb47fc7e398d5af7b /debian
parent3d0592e9238a59df54b3e3b757a38fa2e7f0ccfb (diff)
First websocket connection
Diffstat (limited to 'debian')
-rw-r--r--debian/README.Debian4
-rw-r--r--debian/changelog6
-rw-r--r--debian/control4
-rw-r--r--debian/whiteboard.whiteboard.service2
4 files changed, 11 insertions, 5 deletions
diff --git a/debian/README.Debian b/debian/README.Debian
index 07ab4d6..c740e12 100644
--- a/debian/README.Debian
+++ b/debian/README.Debian
@@ -17,8 +17,8 @@ Configuration
<plugin>static-files</plugin>
<target>/usr/lib/whiteboard/html</target>
</path>
- <path requested="/whiteboard/whiteboard.fcgi">
- <plugin>fcgi</plugin>
+ <path requested="/whiteboard/websocket">
+ <plugin>websocket</plugin>
<target>127.0.0.1:9014</target>
</path>
diff --git a/debian/changelog b/debian/changelog
index 0b9c82c..8373568 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+whiteboard (1.5) UNRELEASED; urgency=medium
+
+ * Move from FCGI to websocket interface
+
+ -- Roland Reichwein <mail@reichwein.it> Sat, 21 Jan 2023 18:18:37 +0100
+
whiteboard (1.4) unstable; urgency=medium
* Move from filesystem based documents to sqlite
diff --git a/debian/control b/debian/control
index 6b0db0e..0dce8fc 100644
--- a/debian/control
+++ b/debian/control
@@ -2,13 +2,13 @@ Source: whiteboard
Section: web
Priority: optional
Maintainer: Roland Reichwein <mail@reichwein.it>
-Build-Depends: debhelper (>= 12), libboost-all-dev | libboost1.71-all-dev, clang | g++-9, llvm | g++-9, lld | g++-9, uglifyjs, python3-pkg-resources, htmlmin, cleancss, libfcgi-dev, libqrcodegencpp-dev, libgraphicsmagick++-dev, pkg-config, libfmt-dev, libsqlitecpp-dev, googletest, gcovr, webserver, libreichwein-dev
+Build-Depends: debhelper (>= 12), libboost-all-dev | libboost1.71-all-dev, clang | g++-9, llvm | g++-9, lld | g++-9, uglifyjs, python3-pkg-resources, htmlmin, cleancss, libqrcodegencpp-dev, libgraphicsmagick++-dev, pkg-config, libfmt-dev, libsqlitecpp-dev, googletest, gcovr, webserver, libreichwein-dev
Standards-Version: 4.5.0
Homepage: http://www.reichwein.it/whiteboard/
Package: whiteboard
Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, spawn-fcgi, libxml2-utils
+Depends: ${shlibs:Depends}, ${misc:Depends}, libxml2-utils
Recommends: webserver
Homepage: http://www.reichwein.it/whiteboard/
Description: Web application for an collaborative editor
diff --git a/debian/whiteboard.whiteboard.service b/debian/whiteboard.whiteboard.service
index c60f3f0..b41e655 100644
--- a/debian/whiteboard.whiteboard.service
+++ b/debian/whiteboard.whiteboard.service
@@ -5,7 +5,7 @@ After=network.target
[Service]
Type=simple
# Restart=always
-ExecStart=spawn-fcgi -a 127.0.0.1 -p 9014 -n -- /usr/lib/whiteboard/whiteboard.fcgi
+ExecStart=/usr/bin/whiteboard
Restart=always