This commit is contained in:
Marc Beninca 2021-04-05 11:31:51 +02:00
parent 29a88fc652
commit 6ada877b7f
5 changed files with 100 additions and 0 deletions

15
test/index.cgi Executable file
View file

@ -0,0 +1,15 @@
#! /usr/bin/env python3
from waitress import serve
def app():
import web
web.print_headers_if_needed()
counter += 1
print('Counter: {}'.format(counter))
if __name__ == '__main__':
counter = 0
serve(app, unix_socket='/var/run/fcgiwrap.socket')