diff options
author | Roland Reichwein <mail@reichwein.it> | 2023-01-11 15:27:23 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2023-01-11 15:27:23 +0100 |
commit | e679b0241662ea7c1910b9fc02ed0cb8f59b0de6 (patch) | |
tree | 3ee941465c80f9331de48cb3230515fb27460305 /debian | |
parent | 478e9f340fe303f3171f4184f494947bf39e3dbf (diff) |
Test CGI
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 3 | ||||
-rw-r--r-- | debian/webserver.docs | 1 | ||||
-rw-r--r-- | debian/webserver.example-cgi.conf | 26 |
3 files changed, 29 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index ea55a13..ce7835f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ webserver (1.18~pre1) UNRELEASED; urgency=medium - * + * Added websockets support (configurable forwarding proxy) + * CGI bugfix: Executable execute bits check -- Roland Reichwein <mail@reichwein.it> Sun, 08 Jan 2023 15:26:48 +0100 diff --git a/debian/webserver.docs b/debian/webserver.docs index 71dfd5b..0b7c406 100644 --- a/debian/webserver.docs +++ b/debian/webserver.docs @@ -1 +1,2 @@ README.txt +webserver.example-cgi.conf diff --git a/debian/webserver.example-cgi.conf b/debian/webserver.example-cgi.conf new file mode 100644 index 0000000..99faa52 --- /dev/null +++ b/debian/webserver.example-cgi.conf @@ -0,0 +1,26 @@ +<webserver> + <user>www-data</user> + <group>www-data</group> + <threads>10</threads> + <statisticspath>/var/lib/webserver/stats.db</statisticspath> + <plugin-directory>/usr/lib/webserver/plugins</plugin-directory> + <sites> + <site> + <name>localhost</name> + <host>localhost</host> + <host>[::1]</host> + <path requested="/cgi-bin"> + <plugin>cgi</plugin> + <target>/var/lib/webserver/cgi-bin</target> + </path> + </site> + </sites> + <sockets> + <socket> + <address>::1</address> + <port>8080</port> + <protocol>http</protocol> + <site>localhost</site> + </socket> + </sockets> +</webserver> |