diff options
-rw-r--r-- | TODO | 2 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rw-r--r-- | webserver.conf | 9 |
3 files changed, 11 insertions, 2 deletions
@@ -5,7 +5,7 @@ git via web interface php weblog: link consistency check (cron?) Integrate into Debian: WNPP -support alternative SSL libs: mbedtls, gnutls, wolfssl, botan, (matrixssl, libressl, cryptlib: not in debian) +support alternative SSL libs: mbedtls, gnutls, wolfssl, botan, linux kernel TLS (matrixssl, libressl, cryptlib: not in debian) webbox: gallery webbox: google pagespeed insights https://developers.google.com/speed/pagespeed/insights/?url=http%3A%2F%2Fwww.kneipenband.com%2Fwebbox%2F&tab=mobile webbox: chromecast diff --git a/debian/control b/debian/control index ecfca81..6959a97 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: webserver Section: httpd Priority: optional Maintainer: Roland Reichwein <mail@reichwein.it> -Build-Depends: debhelper (>= 12), libssl-dev, libboost-all-dev | libboost1.71-all-dev, clang-13 | clang-11 | clang | g++-11 | g++, node-uglify, python3-pkg-resources, htmlmin, cleancss +Build-Depends: debhelper (>= 12), libssl-dev, libboost-all-dev | libboost1.71-all-dev, clang-13 | clang-11 | clang | g++-11 | g++, uglifyjs, python3-pkg-resources, htmlmin, cleancss Standards-Version: 4.5.0 Homepage: http://www.reichwein.it/webserver/ diff --git a/webserver.conf b/webserver.conf index 81da39b..5afe19c 100644 --- a/webserver.conf +++ b/webserver.conf @@ -93,6 +93,15 @@ <target>127.0.0.1:9004</target> </path> + <path requested="/whiteboard"> + <plugin>static-files</plugin> + <target>/home/ernie/code/whiteboard/html</target> + </path> + <path requested="/whiteboard/whiteboard.fcgi"> + <plugin>fcgi</plugin> + <target>127.0.0.1:9014</target> + </path> + <path requested="/redirect1"> <plugin>redirect</plugin> <target>https://www.antcom.de/</target> |